Enum tc_table::Table[][src]

pub enum Table<F: File<Node>, D: Dir, Txn: Transaction<D>> {
    Index(Index<F, D, Txn>),
    ROIndex(ReadOnly<F, D, Txn>),
    Table(TableIndex<F, D, Txn>),
    Aggregate(Box<Aggregate<F, D, Txn, Table<F, D, Txn>>>),
    IndexSlice(IndexSlice<F, D, Txn>),
    Limit(Box<Limited<F, D, Txn>>),
    Merge(Merged<F, D, Txn>),
    Selection(Box<Selection<F, D, Txn, Table<F, D, Txn>>>),
    TableSlice(TableSlice<F, D, Txn>),
}

An ordered collection of Rows which supports BTree-based indexing

Variants

Index(Index<F, D, Txn>)
ROIndex(ReadOnly<F, D, Txn>)
Table(TableIndex<F, D, Txn>)
Aggregate(Box<Aggregate<F, D, Txn, Table<F, D, Txn>>>)
IndexSlice(IndexSlice<F, D, Txn>)
Limit(Box<Limited<F, D, Txn>>)
Merge(Merged<F, D, Txn>)
Selection(Box<Selection<F, D, Txn, Table<F, D, Txn>>>)
TableSlice(TableSlice<F, D, Txn>)

Trait Implementations

impl<F: Clone + File<Node>, D: Clone + Dir, Txn: Clone + Transaction<D>> Clone for Table<F, D, Txn>[src]

impl<F: File<Node>, D: Dir, Txn: Transaction<D>> Display for Table<F, D, Txn>[src]

impl<F: File<Node>, D: Dir, Txn: Transaction<D>> From<TableIndex<F, D, Txn>> for Table<F, D, Txn>[src]

impl<F: File<Node>, D: Dir, Txn: Transaction<D>> FromStream for Table<F, D, Txn> where
    F: TryFrom<D::File, Error = TCError>,
    D::FileClass: From<BTreeType>, 
[src]

type Context = Txn

The decoding context of this type, useful in situations where the stream to be decoded may be too large to hold in main memory. Read more

impl<F: File<Node>, D: Dir, Txn: Transaction<D>> Instance for Table<F, D, Txn>[src]

type Class = TableType

The Class type of this instance

impl<'en, F: File<Node>, D: Dir, Txn: Transaction<D>> IntoView<'en, D> for Table<F, D, Txn>[src]

type Txn = Txn

type View = TableView<'en>

impl<F: File<Node>, D: Dir, Txn: Transaction<D>> TableInstance<F, D, Txn> for Table<F, D, Txn>[src]

type OrderBy = Self

The type of Table returned by this instance’s order_by method.

type Reverse = Self

The type of Table returned by this instance’s reversed method.

type Slice = Self

The type of Table returned by this instance’s slice method.

Auto Trait Implementations

impl<F, D, Txn> RefUnwindSafe for Table<F, D, Txn> where
    D: RefUnwindSafe,
    F: RefUnwindSafe,
    Txn: RefUnwindSafe

impl<F, D, Txn> Send for Table<F, D, Txn>

impl<F, D, Txn> Sync for Table<F, D, Txn>

impl<F, D, Txn> Unpin for Table<F, D, Txn> where
    D: Unpin,
    F: Unpin,
    Txn: Unpin

impl<F, D, Txn> UnwindSafe for Table<F, D, Txn> where
    D: RefUnwindSafe + UnwindSafe,
    F: RefUnwindSafe + UnwindSafe,
    Txn: RefUnwindSafe + UnwindSafe

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

impl<T, F> CastInto<F> for T where
    F: CastFrom<T>, 
[src]

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

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

impl<F> Match for F[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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]

impl<F, T> TryCastFrom<F> for T where
    T: CastFrom<F>, 
[src]

impl<F, T> TryCastInto<T> for F where
    T: TryCastFrom<F>, 
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,