Trait tc_table::TableRead

source ·
pub trait TableRead: TableInstance {
    fn read<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        txn_id: &'life1 TxnId,
        key: &'life2 Key
    ) -> Pin<Box<dyn Future<Output = TCResult<Option<Vec<Value>>>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait
; }
Expand description

Method to read a single row from a Table

Required Methods§

Implementors§