Struct llvm_ir::instruction::InlineAssembly
source · [−]pub struct InlineAssembly {
pub ty: TypeRef,
}
Expand description
See LLVM 14 docs on Inline Assembler Expressions
InlineAssembly
needs more fields, but the necessary getter functions are
apparently not exposed in the LLVM C API (only the C++ API)
Fields
ty: TypeRef
Trait Implementations
sourceimpl Clone for InlineAssembly
impl Clone for InlineAssembly
sourcefn clone(&self) -> InlineAssembly
fn clone(&self) -> InlineAssembly
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InlineAssembly
impl Debug for InlineAssembly
sourceimpl PartialEq<InlineAssembly> for InlineAssembly
impl PartialEq<InlineAssembly> for InlineAssembly
sourcefn eq(&self, other: &InlineAssembly) -> bool
fn eq(&self, other: &InlineAssembly) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for InlineAssembly
impl StructuralEq for InlineAssembly
impl StructuralPartialEq for InlineAssembly
Auto Trait Implementations
impl RefUnwindSafe for InlineAssembly
impl Send for InlineAssembly
impl Sync for InlineAssembly
impl Unpin for InlineAssembly
impl UnwindSafe for InlineAssembly
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more