summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Blajda <blajda@hotmail.com>2018-12-30 21:58:54 +0000
committerDavid Blajda <blajda@hotmail.com>2018-12-30 21:58:54 +0000
commit90b079f07c73f4d2ffe93078fe9e8e1df630dbb4 (patch)
treef3018954c5c524f9e5c75e3556476060e823866b
parent70629ed0dc950d4f1c83ef15a6b4b65700338d3d (diff)
:WIP: pub int
-rw-r--r--src/types.rs2
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>
}