Trait gluesql::core::store::Index[][src]

pub trait Index<T> where
    T: Debug
{ fn scan_indexed_data<'life0, 'life1, 'life2, 'life3, 'async_trait>(
        &'life0 self,
        table_name: &'life1 str,
        index_name: &'life2 str,
        asc: Option<bool>,
        cmp_value: Option<(&'life3 IndexOperator, Value)>
    ) -> Pin<Box<dyn Future<Output = Result<Box<dyn Iterator<Item = Result<(T, Row), Error>> + 'static, Global>, Error>> + 'async_trait, Global>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        'life3: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors