Skip to content

Commit 5d9c667

Browse files
ex0dus-0xemesare
authored andcommitted
make fields of LookupTableEntry public
1 parent 3037f60 commit 5d9c667

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/src/variable.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,9 +590,9 @@ impl From<ValueRange<i64>> for BNValueRange {
590590
#[derive(Clone, Debug, Eq, PartialEq)]
591591
pub struct LookupTableEntry {
592592
/// The set of integers that correspond with [`Self::to`].
593-
from: HashSet<i64>,
593+
pub from: HashSet<i64>,
594594
/// The associated "mapped" value.
595-
to: i64,
595+
pub to: i64,
596596
}
597597

598598
impl LookupTableEntry {

0 commit comments

Comments
 (0)