pub trait AutoIncrement {
    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
        'life0: 'async_trait,
        Self: '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
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
, { ... } }

Provided Methods

Implementors