From d736ed0619525d1be81867978413ce576540b524 Mon Sep 17 00:00:00 2001 From: alan <17283637+ex0dus-0x@users.noreply.github.com> Date: Tue, 10 Jun 2025 09:48:55 -0400 Subject: [PATCH] make fields of LookupTableEntry public --- rust/src/variable.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {