[][src]Struct cranelift_codegen::ir::TableData

pub struct TableData {
    pub base_gv: GlobalValue,
    pub min_size: Uimm64,
    pub bound_gv: GlobalValue,
    pub element_size: Uimm64,
    pub index_type: Type,
}

Information about a table declaration.

Fields

base_gv: GlobalValue

Global value giving the address of the start of the table.

min_size: Uimm64

Guaranteed minimum table size in elements. Table accesses before min_size don't need bounds checking.

bound_gv: GlobalValue

Global value giving the current bound of the table, in elements.

element_size: Uimm64

The size of a table element, in bytes.

index_type: Type

The index type for the table.

Trait Implementations

impl Display for TableData[src]

impl Clone for TableData[src]

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]