Enum rustc_metadata::rmeta::LazyState
source · enum LazyState {
NoNode,
NodeStart(NonZeroUsize),
Previous(NonZeroUsize),
}
Expand description
Encoding / decoding state for Lazy
s (LazyValue
, LazyArray
, and LazyTable
).
Variants§
NoNode
Outside of a metadata node.
NodeStart(NonZeroUsize)
Inside a metadata node, and before any Lazy
s.
The position is that of the node itself.
Previous(NonZeroUsize)
Inside a metadata node, with a previous Lazy
s.
The position is where that previous Lazy
would start.
Trait Implementations§
source§impl PartialEq<LazyState> for LazyState
impl PartialEq<LazyState> for LazyState
impl Copy for LazyState
impl Eq for LazyState
impl StructuralEq for LazyState
impl StructuralPartialEq for LazyState
Auto Trait Implementations§
impl RefUnwindSafe for LazyState
impl Send for LazyState
impl Sync for LazyState
impl Unpin for LazyState
impl UnwindSafe for LazyState
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
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: 16 bytes
Size for each variant:
NoNode
: 0 bytesNodeStart
: 8 bytesPrevious
: 8 bytes