pub type LocalDefIdMapEntry<'a, T> = Entry<'a, LocalDefId, T>;

Aliased Type§

enum LocalDefIdMapEntry<'a, T> {
    Occupied(OccupiedEntry<'a, LocalDefId, T>),
    Vacant(VacantEntry<'a, LocalDefId, T>),
}

Variants§

§1.0.0

Occupied(OccupiedEntry<'a, LocalDefId, T>)

An occupied entry.

§1.0.0

Vacant(VacantEntry<'a, LocalDefId, T>)

A vacant entry.

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: 32 bytes

Size for each variant:

  • Occupied: 24 bytes
  • Vacant: 24 bytes