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

pub struct Table { /* fields omitted */ }

A list of buckets and thus collection of rows with a name

Methods

impl Table[src]

pub fn from(definition: TableDef, data: TableData) -> Self[src]

pub fn new(definition: TableDef) -> Self[src]

pub fn buckets(self) -> Vec<Bucket>[src]

pub fn buckets_ref(&self) -> &Vec<Bucket>[src]

pub fn columns(self) -> Vec<Column>[src]

pub fn columns_ref(&self) -> &Vec<Column>[src]

pub fn name(&self) -> &str[src]

Trait Implementations

impl IntoIterator for Table[src]

type Item = Row

The type of the elements being iterated over.

type IntoIter = FlatMap<IntoIter<Bucket>, IntoIter<Row>, fn(_: Bucket) -> IntoIter<Row>>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a Table[src]

type Item = &'a Row

The type of the elements being iterated over.

type IntoIter = FlatMap<Iter<'a, Bucket>, Iter<'a, Row>, fn(_: &'a Bucket) -> Iter<'a, Row>>

Which kind of iterator are we turning this into?

Auto Trait Implementations

impl Send for Table

impl Sync for Table

Blanket Implementations

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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