[][src]Struct llir::types::ArrayType

pub struct ArrayType<'ctx>(_, _);

Implementations

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

pub fn element_type(&self) -> Type<'ctx>[src]

Get the element_type of the Array Type

pub fn num_elements(&self) -> usize[src]

Get the number of elements in the Array Type

Trait Implementations

impl<'ctx> AsType<'ctx> for ArrayType<'ctx>[src]

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

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

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

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

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

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

impl<'ctx> Send for ArrayType<'ctx>[src]

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

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

impl<'ctx> Sync for ArrayType<'ctx>[src]

Auto Trait Implementations

impl<'ctx> RefUnwindSafe for ArrayType<'ctx>

impl<'ctx> Unpin for ArrayType<'ctx>

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