Enum rustc_middle::mir::interpret::State [−][src]
enum State {
Empty,
InProgressNonAlloc(TinyList<NonZeroU32>),
InProgress(TinyList<NonZeroU32>, AllocId),
Done(AllocId),
}
Variants
InProgressNonAlloc(TinyList<NonZeroU32>)
Tuple Fields of InProgressNonAlloc
0: TinyList<NonZeroU32>
InProgress(TinyList<NonZeroU32>, AllocId)
Tuple Fields of InProgress
0: TinyList<NonZeroU32>
1: AllocId
Done(AllocId)
Tuple Fields of Done
0: AllocId
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for State
impl UnwindSafe for State
Blanket Implementations
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: 32 bytes
Size for each variant:
Empty
: 0 bytesInProgressNonAlloc
: 16 bytesInProgress
: 24 bytesDone
: 8 bytes