Trait AutoIncrement

Source
pub trait AutoIncrement {
    // Provided methods
    fn generate_increment_values<'life0, 'async_trait>(
        &'life0 mut self,
        _table_name: String,
        _columns: Vec<(usize, String, i64)>,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<((usize, String), i64)>>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait { ... }
    fn set_increment_value<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 mut self,
        _table_name: &'life1 str,
        _column_name: &'life2 str,
        _end: i64,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait { ... }
}

Provided Methods§

Source

fn generate_increment_values<'life0, 'async_trait>( &'life0 mut self, _table_name: String, _columns: Vec<(usize, String, i64)>, ) -> Pin<Box<dyn Future<Output = Result<Vec<((usize, String), i64)>>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn set_increment_value<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, _table_name: &'life1 str, _column_name: &'life2 str, _end: i64, ) -> Pin<Box<dyn Future<Output = Result<()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Implementors§