diff --git a/rust/src/variable.rs b/rust/src/variable.rs index dd7f4cf5c..7e32727a3 100644 --- a/rust/src/variable.rs +++ b/rust/src/variable.rs @@ -590,9 +590,9 @@ impl From> for BNValueRange { #[derive(Clone, Debug, Eq, PartialEq)] pub struct LookupTableEntry { /// The set of integers that correspond with [`Self::to`]. - from: HashSet, + pub from: HashSet, /// The associated "mapped" value. - to: i64, + pub to: i64, } impl LookupTableEntry {