summaryrefslogtreecommitdiff
path: root/rust/src/variable.rs
diff options
context:
space:
mode:
authoralan <17283637+ex0dus-0x@users.noreply.github.com>2025-06-10 09:48:55 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-07-24 21:36:01 +0000
commit5d9c66726420fa93d50b0ef5a6daf69e1855e40a (patch)
treeecaad6d48c537a7033a0af1ef43dbf84b6ad16e1 /rust/src/variable.rs
parent3037f60a053244b0c82a736f45fc52f7c666618a (diff)
make fields of LookupTableEntry public
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 {