Trait tc_transact::IntoView[][src]

pub trait IntoView<'en, D: Dir> {
    type Txn: Transaction<D>;
    type View: IntoStream<'en> + Sized;
    #[must_use]
    fn into_view<'async_trait>(
        self,
        txn: Self::Txn
    ) -> Pin<Box<dyn Future<Output = TCResult<Self::View>> + Send + 'async_trait>>
    where
        Self: 'async_trait
; }

Associated Types

Required methods

#[must_use]
fn into_view<'async_trait>(
    self,
    txn: Self::Txn
) -> Pin<Box<dyn Future<Output = TCResult<Self::View>> + Send + 'async_trait>> where
    Self: 'async_trait, 
[src]

Implementors