diff options
-rw-r--r-- | src/types.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.rs b/src/types.rs index eeede15..f984935 100644 --- a/src/types.rs +++ b/src/types.rs @@ -23,7 +23,7 @@ use std::borrow::Cow; #[derive(Clone)] pub struct IntegerId<'a, T> { - int: u32, + pub int: u32, id: Cow<'a, str>, marker: PhantomData<T> } |