[][src]Struct one_way_slot_map::SlotMapKeyData

pub struct SlotMapKeyData {
    pub index_in_chunk: usize,
    pub chunk_index: usize,
    pub generation: usize,
}

Fields

index_in_chunk: usizechunk_index: usizegeneration: usize

Implementations

impl SlotMapKeyData[src]

pub fn new(
    index_in_chunk: usize,
    chunk_index: usize,
    generation: usize
) -> SlotMapKeyData
[src]

pub fn increment_generation(&mut self)[src]

Increase the generation by one

Trait Implementations

impl Clone for SlotMapKeyData[src]

impl Copy for SlotMapKeyData[src]

impl Debug for SlotMapKeyData[src]

impl Default for SlotMapKeyData[src]

impl From<SlotMapKeyData> for u64[src]

impl From<u64> for SlotMapKeyData[src]

impl Hash for SlotMapKeyData[src]

impl PartialEq<SlotMapKeyData> for SlotMapKeyData[src]

impl StructuralPartialEq for SlotMapKeyData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.