[][src]Enum inkwell::AddressSpace

pub enum AddressSpace {
    Generic,
    Global,
    Shared,
    Const,
    Local,
}

Defines the address space in which a global will be inserted.

Remarks

See also: https://llvm.org/doxygen/NVPTXBaseInfo_8h_source.html

Variants

GenericGlobalSharedConstLocal

Trait Implementations

impl Eq for AddressSpace[src]

impl Clone for AddressSpace[src]

impl PartialEq<AddressSpace> for AddressSpace[src]

impl Copy for AddressSpace[src]

impl Debug for AddressSpace[src]

impl TryFrom<u32> for AddressSpace[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

impl Sync for AddressSpace

impl Send for AddressSpace

impl Unpin for AddressSpace

impl UnwindSafe for AddressSpace

impl RefUnwindSafe for AddressSpace

Blanket Implementations

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> From<T> for T[src]

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.

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

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

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