Enum stable_mir::mir::TerminatorKind
source · pub enum TerminatorKind {
Goto {
target: BasicBlockIdx,
},
SwitchInt {
discr: Operand,
targets: SwitchTargets,
},
Resume,
Abort,
Return,
Unreachable,
Drop {
place: Place,
target: BasicBlockIdx,
unwind: UnwindAction,
},
Call {
func: Operand,
args: Vec<Operand>,
destination: Place,
target: Option<BasicBlockIdx>,
unwind: UnwindAction,
},
Assert {
cond: Operand,
expected: bool,
msg: AssertMessage,
target: BasicBlockIdx,
unwind: UnwindAction,
},
InlineAsm {
template: String,
operands: Vec<InlineAsmOperand>,
options: String,
line_spans: String,
destination: Option<BasicBlockIdx>,
unwind: UnwindAction,
},
}
Variants§
Goto
Fields
§
target: BasicBlockIdx
SwitchInt
Resume
Abort
Return
Unreachable
Drop
Call
Assert
InlineAsm
Implementations§
source§impl TerminatorKind
impl TerminatorKind
pub fn successors(&self) -> Successors
pub fn unwind(&self) -> Option<&UnwindAction>
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 moresource§impl Debug for TerminatorKind
impl Debug for TerminatorKind
source§impl PartialEq for TerminatorKind
impl PartialEq for TerminatorKind
source§fn eq(&self, other: &TerminatorKind) -> bool
fn eq(&self, other: &TerminatorKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TerminatorKind
impl StructuralPartialEq for TerminatorKind
Auto Trait Implementations§
impl Freeze for TerminatorKind
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: 352 bytes
Size for each variant:
Goto
: 8 bytesSwitchInt
: 248 bytesResume
: 0 bytesAbort
: 0 bytesReturn
: 0 bytesUnreachable
: 0 bytesDrop
: 56 bytesCall
: 304 bytesAssert
: 352 bytesInlineAsm
: 240 bytes