diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-30 21:58:54 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-30 21:58:54 +0000 |
commit | 90b079f07c73f4d2ffe93078fe9e8e1df630dbb4 (patch) | |
tree | f3018954c5c524f9e5c75e3556476060e823866b | |
parent | 70629ed0dc950d4f1c83ef15a6b4b65700338d3d (diff) |
:WIP: pub int
-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> } |