[][src]Enum llir::values::Metadata

pub enum Metadata<'ctx> {
    ConstantAsMetadata(ConstantAsMetadata<'ctx>),
    DIExpression(DIExpression<'ctx>),
    DILabel(DILabel<'ctx>),
    DILocalVariable(DILocalVariable<'ctx>),
    DILocation(DILocation<'ctx>),
    DistinctMDOperandPlaceholder(DistinctMDOperandPlaceholder<'ctx>),
    GenericDINode(GenericDINode<'ctx>),
    LocalAsMetadata(LocalAsMetadata<'ctx>),
    MDTuple(MDTuple<'ctx>),
    Other(GenericValue<'ctx>),
}

Variants

ConstantAsMetadata(ConstantAsMetadata<'ctx>)
DIExpression(DIExpression<'ctx>)
DILabel(DILabel<'ctx>)
DILocalVariable(DILocalVariable<'ctx>)
DILocation(DILocation<'ctx>)
DistinctMDOperandPlaceholder(DistinctMDOperandPlaceholder<'ctx>)
GenericDINode(GenericDINode<'ctx>)
LocalAsMetadata(LocalAsMetadata<'ctx>)
MDTuple(MDTuple<'ctx>)
Other(GenericValue<'ctx>)

Trait Implementations

impl<'ctx> AsMetadata<'ctx> for Metadata<'ctx>[src]

impl<'ctx> AsOperand<'ctx> for Metadata<'ctx>[src]

impl<'ctx> Clone for Metadata<'ctx>[src]

impl<'ctx> Copy for Metadata<'ctx>[src]

impl<'ctx> Debug for Metadata<'ctx>[src]

impl<'ctx> Eq for Metadata<'ctx>[src]

impl<'ctx> Hash for Metadata<'ctx>[src]

impl<'ctx> PartialEq<Metadata<'ctx>> for Metadata<'ctx>[src]

impl<'ctx> StructuralEq for Metadata<'ctx>[src]

impl<'ctx> StructuralPartialEq for Metadata<'ctx>[src]

Auto Trait Implementations

impl<'ctx> RefUnwindSafe for Metadata<'ctx>

impl<'ctx> Send for Metadata<'ctx>

impl<'ctx> Sync for Metadata<'ctx>

impl<'ctx> Unpin for Metadata<'ctx>

impl<'ctx> UnwindSafe for Metadata<'ctx>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.