Struct llvm_ir::module::GlobalAlias[][src]

pub struct GlobalAlias {
    pub name: Name,
    pub aliasee: ConstantRef,
    pub linkage: Linkage,
    pub visibility: Visibility,
    pub ty: TypeRef,
    pub addr_space: AddrSpace,
    pub dll_storage_class: DLLStorageClass,
    pub thread_local_mode: ThreadLocalMode,
    pub unnamed_addr: Option<UnnamedAddr>,
}

See LLVM 12 docs on Global Aliases

Fields

name: Namealiasee: ConstantReflinkage: Linkagevisibility: Visibilityty: TypeRefaddr_space: AddrSpacedll_storage_class: DLLStorageClassthread_local_mode: ThreadLocalModeunnamed_addr: Option<UnnamedAddr>

Trait Implementations

impl Clone for GlobalAlias[src]

impl Debug for GlobalAlias[src]

impl PartialEq<GlobalAlias> for GlobalAlias[src]

impl StructuralPartialEq for GlobalAlias[src]

impl Typed for GlobalAlias[src]

Auto Trait Implementations

impl RefUnwindSafe for GlobalAlias[src]

impl Send for GlobalAlias[src]

impl Sync for GlobalAlias[src]

impl Unpin for GlobalAlias[src]

impl UnwindSafe for GlobalAlias[src]

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.