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§
source§impl Clone for InlineAssembly
impl Clone for InlineAssembly
source§fn clone(&self) -> InlineAssembly
fn clone(&self) -> InlineAssembly
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 InlineAssembly
impl Debug for InlineAssembly
source§impl PartialEq<InlineAssembly> for InlineAssembly
impl PartialEq<InlineAssembly> for InlineAssembly
source§fn 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 ==
.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§
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