Trait gluesql::store::IndexMut[][src]

pub trait IndexMut<T: Debug> where
    Self: Sized
{ fn create_index<'life0, 'life1, 'life2, 'async_trait>(
        self,
        table_name: &'life0 str,
        index_name: &'life1 str,
        column: &'life2 OrderByExpr
    ) -> Pin<Box<dyn Future<Output = MutResult<Self, ()>> + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
;
fn drop_index<'life0, 'life1, 'async_trait>(
        self,
        table_name: &'life0 str,
        index_name: &'life1 str
    ) -> Pin<Box<dyn Future<Output = MutResult<Self, ()>> + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors