pub struct IndexU64(/* private fields */);Expand description
A GenIndex that is stored as u64, which 32bit index and 32bit generation.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IndexU64
impl<'de> Deserialize<'de> for IndexU64
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl GenIndex for IndexU64
impl GenIndex for IndexU64
Source§type Generation = u32
type Generation = u32
The type of generation value.
Source§fn max_generation() -> Self::Generation
fn max_generation() -> Self::Generation
Returns the maximum generation value.
Source§fn from_raw_parts(index: Self::Index, generation: Self::Generation) -> Self
fn from_raw_parts(index: Self::Index, generation: Self::Generation) -> Self
Create a new
GenIndex from its raw parts.Source§fn generation(&self) -> Self::Generation
fn generation(&self) -> Self::Generation
Returns the generation value of this
GenIndex.Source§impl PartialOrd for IndexU64
impl PartialOrd for IndexU64
impl Copy for IndexU64
impl StructuralPartialEq for IndexU64
Auto Trait Implementations§
impl Freeze for IndexU64
impl RefUnwindSafe for IndexU64
impl Send for IndexU64
impl Sync for IndexU64
impl Unpin for IndexU64
impl UnwindSafe for IndexU64
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more