Make Lifetime struct field public

This commit is contained in:
Guillaume Gomez 2019-12-03 22:22:26 +01:00
parent f5e0d0cc18
commit e14eebb6bb
1 changed files with 1 additions and 1 deletions

View File

@ -748,7 +748,7 @@ impl GenericBound {
}
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct Lifetime(String);
pub struct Lifetime(pub String);
impl Lifetime {
pub fn get_ref<'a>(&'a self) -> &'a str {