[][src]Struct assembly::fdb::align::Table

pub struct Table<'a> { /* fields omitted */ }

Implementations

impl<'a> Table<'a>[src]

pub fn name_raw(&self) -> &Latin1Str[src]

Get the undecoded name of the table

pub fn name(&self) -> Cow<'_, str>[src]

Get the name of the table

pub fn index_iter(&self, id: u32) -> impl Iterator<Item = Row<'a>>[src]

Get a list of rows by index

pub fn column_at(&self, index: usize) -> Option<Column<'a>>[src]

Get the column at the index

Note: This does some computation, call only once per colum if possible

pub fn column_iter(&self) -> impl Iterator<Item = Column<'a>>[src]

Get the column iterator

Note: This does some computation, call only once if possible

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

The amount of columns in this table

pub fn bucket_at(&self, index: usize) -> Option<Bucket<'a>>[src]

Get the bucket at the index

Note: This does some computation, call only once per bucket if possible

pub fn bucket_iter(&self) -> impl Iterator<Item = Bucket<'a>>[src]

Get the bucket iterator

Note: This does some computation, call only once if possible

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

Get the amount of buckets

pub fn row_iter(&self) -> impl Iterator<Item = Row<'a>>[src]

Get an iterator over all rows

Trait Implementations

impl<'a> Clone for Table<'a>[src]

impl<'a> Copy for Table<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Table<'a>

impl<'a> Send for Table<'a>

impl<'a> Sync for Table<'a>

impl<'a> Unpin for Table<'a>

impl<'a> UnwindSafe for Table<'a>

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> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T> TryConv for T

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.