Enum stable_mir::mir::TerminatorKind
source · pub enum TerminatorKind {
Goto {
target: usize,
},
SwitchInt {
discr: Operand,
targets: Vec<SwitchTarget>,
otherwise: usize,
},
Resume,
Abort,
Return,
Unreachable,
Drop {
place: Place,
target: usize,
unwind: UnwindAction,
},
Call {
func: Operand,
args: Vec<Operand>,
destination: Place,
target: Option<usize>,
unwind: UnwindAction,
},
Assert {
cond: Operand,
expected: bool,
msg: AssertMessage,
target: usize,
unwind: UnwindAction,
},
GeneratorDrop,
InlineAsm {
template: String,
operands: Vec<InlineAsmOperand>,
options: String,
line_spans: String,
destination: Option<usize>,
unwind: UnwindAction,
},
}
Variants§
Goto
SwitchInt
Resume
Abort
Return
Unreachable
Drop
Call
Fields
§
unwind: UnwindAction
Assert
GeneratorDrop
InlineAsm
Trait Implementations§
source§impl Clone for TerminatorKind
impl Clone for TerminatorKind
source§fn clone(&self) -> TerminatorKind
fn clone(&self) -> TerminatorKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for TerminatorKind
impl Send for TerminatorKind
impl Sync for TerminatorKind
impl Unpin for TerminatorKind
impl UnwindSafe for TerminatorKind
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: 328 bytes
Size for each variant:
Goto
: 8 bytesSwitchInt
: 232 bytesResume
: 0 bytesAbort
: 0 bytesReturn
: 0 bytesUnreachable
: 0 bytesDrop
: 56 bytesCall
: 288 bytesAssert
: 328 bytesGeneratorDrop
: 0 bytesInlineAsm
: 232 bytes