[][src]Enum llir::values::Global

pub enum Global<'ctx> {
    Variable(GlobalVariable<'ctx>),
    Alias(GlobalAlias<'ctx>),
}

Global container enum

A global could be either a normal variable or an alias

Variants

Variable(GlobalVariable<'ctx>)

Global variable

Alias(GlobalAlias<'ctx>)

Global alias

Implementations

impl<'ctx> Global<'ctx>[src]

pub fn is_alias(&self) -> bool[src]

Check if a global variable is alias

pub fn aliasee(&self) -> Option<Constant<'ctx>>[src]

Get the aliasee

Trait Implementations

impl<'ctx> AsConstant<'ctx> for Global<'ctx>[src]

We can turn a Global into a Global Alias Constant

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

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

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

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

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

impl<'ctx> GetType<'ctx> for Global<'ctx>[src]

A global variable has a type

impl<'ctx> GlobalValueTrait<'ctx> for Global<'ctx>[src]

Global variable implements the trait for global value

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

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

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

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

Auto Trait Implementations

impl<'ctx> RefUnwindSafe for Global<'ctx>

impl<'ctx> Send for Global<'ctx>

impl<'ctx> Sync for Global<'ctx>

impl<'ctx> Unpin for Global<'ctx>

impl<'ctx> UnwindSafe for Global<'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.