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

pub struct Table { /* fields omitted */ }

Methods

impl Table[src]

pub fn new(name: String, buckets: Vec<Bucket>, columns: Vec<Column>) -> Self[src]

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

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

pub fn name(self) -> String[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?

Auto Trait Implementations

impl Send for Table

impl Sync for Table

Blanket Implementations

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]