Make PointId::into_inner() visible

This commit is contained in:
Dirkjan Ochtman 2021-03-18 16:37:16 +01:00
parent c9f62ad3fb
commit edb9451ddf
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ impl PointId {
self.0 != u32::MAX self.0 != u32::MAX
} }
#[doc(hidden)] /// Return the identifier value
pub fn into_inner(self) -> u32 { pub fn into_inner(self) -> u32 {
self.0 self.0
} }