pub enum CallReturnPlaces<'a, 'tcx> {
Call(Place<'tcx>),
InlineAsm(&'a [InlineAsmOperand<'tcx>]),
}
Expand description
List of places that are written to after a successful (non-unwind) return
from a Call
or InlineAsm
.
Variants§
Call(Place<'tcx>)
InlineAsm(&'a [InlineAsmOperand<'tcx>])
Implementations§
Auto Trait Implementations§
impl<'a, 'tcx> !RefUnwindSafe for CallReturnPlaces<'a, 'tcx>
impl<'a, 'tcx> !Send for CallReturnPlaces<'a, 'tcx>
impl<'a, 'tcx> !Sync for CallReturnPlaces<'a, 'tcx>
impl<'a, 'tcx> Unpin for CallReturnPlaces<'a, 'tcx>where
'tcx: 'a,
impl<'a, 'tcx> !UnwindSafe for CallReturnPlaces<'a, 'tcx>
Blanket Implementations§
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: 24 bytes
Size for each variant:
Call
: 16 bytesInlineAsm
: 16 bytes