Struct rustc_metadata::rmeta::table::Table[][src]

pub(super) struct Table<I: Idx, T> where
    Option<T>: FixedSizeEncoding
{ _marker: PhantomData<(fn(_: &I), T)>, _bytes: [u8], }
Expand description

Random-access table (i.e. offering constant-time get/set), similar to Vec<Option<T>>, but without requiring encoding or decoding all the values eagerly and in-order. A total of (max_idx + 1) * <Option<T> as FixedSizeEncoding>::BYTE_LEN bytes are used for a table, where max_idx is the largest index passed to TableBuilder::set.

Fields

_marker: PhantomData<(fn(_: &I), T)>_bytes: [u8]

Trait Implementations

Returns the minimum encoded size.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Layout

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: (unsized)