Struct llvm_ir::terminator::Invoke
source · pub struct Invoke {
pub function: Either<InlineAssembly, Operand>,
pub arguments: Vec<(Operand, Vec<ParameterAttribute>)>,
pub return_attributes: Vec<ParameterAttribute>,
pub result: Name,
pub return_label: Name,
pub exception_label: Name,
pub function_attributes: Vec<FunctionAttribute>,
pub calling_convention: CallingConvention,
pub debugloc: Option<DebugLoc>,
}
Expand description
Fields§
§function: Either<InlineAssembly, Operand>
§arguments: Vec<(Operand, Vec<ParameterAttribute>)>
§return_attributes: Vec<ParameterAttribute>
§result: Name
§return_label: Name
§exception_label: Name
§function_attributes: Vec<FunctionAttribute>
§calling_convention: CallingConvention
§debugloc: Option<DebugLoc>
Trait Implementations§
source§impl From<Invoke> for Terminator
impl From<Invoke> for Terminator
source§fn from(term: Invoke) -> Terminator
fn from(term: Invoke) -> Terminator
Converts to this type from the input type.
source§impl HasDebugLoc for Invoke
impl HasDebugLoc for Invoke
source§impl PartialEq<Invoke> for Invoke
impl PartialEq<Invoke> for Invoke
source§impl TryFrom<Terminator> for Invoke
impl TryFrom<Terminator> for Invoke
impl StructuralPartialEq for Invoke
Auto Trait Implementations§
impl RefUnwindSafe for Invoke
impl Send for Invoke
impl Sync for Invoke
impl Unpin for Invoke
impl UnwindSafe for Invoke
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