Enum rustc_infer::infer::region_constraints::UndoLog [−][src]
pub(crate) enum UndoLog<'tcx> {
AddVar(RegionVid),
AddConstraint(Constraint<'tcx>),
AddVerify(usize),
AddGiven(Region<'tcx>, RegionVid),
AddCombination(CombineMapType, TwoRegions<'tcx>),
}
Variants
AddVar(RegionVid)
We added RegionVid
.
Tuple Fields of AddVar
0: RegionVid
AddConstraint(Constraint<'tcx>)
We added the given constraint
.
Tuple Fields of AddConstraint
0: Constraint<'tcx>
AddVerify(usize)
We added the given verify
.
Tuple Fields of AddVerify
0: usize
We added the given given
.
AddCombination(CombineMapType, TwoRegions<'tcx>)
We added a GLB/LUB “combination variable”.
Tuple Fields of AddCombination
0: CombineMapType
1: TwoRegions<'tcx>
Trait Implementations
Auto Trait Implementations
impl<'tcx> RefUnwindSafe for UndoLog<'tcx>
impl<'tcx> UnwindSafe for UndoLog<'tcx>
Blanket Implementations
pub fn allocate_from_iter(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = T>
) -> &'a 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: 32 bytes
Size for each variant:
AddVar
: 7 bytesAddConstraint
: 31 bytesAddVerify
: 15 bytesAddGiven
: 15 bytesAddCombination
: 23 bytes