Struct tc_table::TableIndex [−][src]
pub struct TableIndex<F, D, Txn> { /* fields omitted */ }Expand description
The base type of a Table.
Implementations
Create a new TableIndex with the given TableSchema.
Return true if this table has zero rows.
Return an index which supports the given Bounds, or an error if there is none.
Return a single row in this table with the given primary key, or None if there is none.
Insert a new row into this TableIndex, or update the row at the given key with values.
pub async fn slice_rows<'a>(
self,
txn_id: TxnId,
bounds: Bounds,
reverse: bool
) -> TCResult<TCTryStream<'a, Vec<Value>>>
pub async fn slice_rows<'a>(
self,
txn_id: TxnId,
bounds: Bounds,
reverse: bool
) -> TCResult<TCTryStream<'a, Vec<Value>>>Stream the rows within the given Bounds from the primary index of this TableIndex.
Trait Implementations
impl<F: File<Node>, D: Dir, Txn: Transaction<D>> From<TableIndex<F, D, Txn>> for Table<F, D, Txn>
impl<F: File<Node>, D: Dir, Txn: Transaction<D>> From<TableIndex<F, D, Txn>> for Table<F, D, Txn>Performs the conversion.
impl<F: File<Node>, D: Dir, Txn: Transaction<D>> TableInstance<F, D, Txn> for TableIndex<F, D, Txn>
impl<F: File<Node>, D: Dir, Txn: Transaction<D>> TableInstance<F, D, Txn> for TableIndex<F, D, Txn>Return the number of rows in this Table.
Delete all rows in this Table.
Delete the given Row from this table, if present.
Return the schema of this Table.
Set the order returned by rows.
Limit the returned rows to the given Bounds.
Return a stream of the rows in this Table.
Return an error if this table does not support the given Bounds.
Return an error if this table does not support ordering by the given columns.
Update the values of the columns in this Table to match the given Row.
Update one row of this Table.
Insert or update the given row.
Group this Table by the given columns.
Construct and return a temporary index of the given columns.
Commit this transaction.
Auto Trait Implementations
impl<F, D, Txn> RefUnwindSafe for TableIndex<F, D, Txn> where
D: RefUnwindSafe,
F: RefUnwindSafe,
Txn: RefUnwindSafe, impl<F, D, Txn> Send for TableIndex<F, D, Txn> where
D: Send + Sync,
F: Send + Sync,
Txn: Send + Sync, impl<F, D, Txn> Sync for TableIndex<F, D, Txn> where
D: Send + Sync,
F: Send + Sync,
Txn: Send + Sync, impl<F, D, Txn> Unpin for TableIndex<F, D, Txn>impl<F, D, Txn> UnwindSafe for TableIndex<F, D, Txn> where
D: RefUnwindSafe,
F: RefUnwindSafe,
Txn: RefUnwindSafe, Blanket Implementations
Mutably borrows from an owned value. Read more
Returns true if self can be cast into the target type T.
type Output = T
type Output = TShould always be Self
Test if value can be cast into Self.
Returns Some(Self) if the source value can be cast into Self, otherwise None.
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err,
fn try_cast_from<Err, OnErr>(value: T, on_err: OnErr) -> Result<Self, Err> where
OnErr: FnOnce(&T) -> Err, Returns Ok(Self) if the source value can be cast into Self, otherwise calls on_err.
Test if self can be cast into T.
Returns Some(T) if self can be cast into T, otherwise None.
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err,
fn try_cast_into<Err, OnErr>(self, on_err: OnErr) -> Result<T, Err> where
OnErr: FnOnce(&Self) -> Err, Returns Ok(T) if self can be cast into T, otherwise calls on_err.
pub fn vzip(self) -> V