Trait SequenceSingleSourceQueryExecutor

Source
pub trait SequenceSingleSourceQueryExecutor {
    // Required method
    fn query_sequence_names<'life0, 'async_trait>(
        &'life0 self,
        input: QueryAllSequencesInput,
    ) -> Pin<Box<dyn Future<Output = Vec<String>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn query_sequence_names<'life0, 'async_trait>( &'life0 self, input: QueryAllSequencesInput, ) -> Pin<Box<dyn Future<Output = Vec<String>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Queries the sequence names from the database.

§Returns

A vector of sequence names.

Implementors§