From 5d9c66726420fa93d50b0ef5a6daf69e1855e40a 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: make fields of LookupTableEntry public --- rust/src/variable.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rust/src/variable.rs') 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> 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 { -- cgit v1.3.1