summaryrefslogtreecommitdiff
path: root/rust/src/variable.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/variable.rs')
-rw-r--r--rust/src/variable.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/variable.rs b/rust/src/variable.rs
index dd7f4cf5..7e32727a 100644
--- a/rust/src/variable.rs
+++ b/rust/src/variable.rs
@@ -590,9 +590,9 @@ impl From<ValueRange<i64>> for BNValueRange {
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct LookupTableEntry {
/// The set of integers that correspond with [`Self::to`].
- from: HashSet<i64>,
+ pub from: HashSet<i64>,
/// The associated "mapped" value.
- to: i64,
+ pub to: i64,
}
impl LookupTableEntry {