pub trait TableParseData {
type OUT: TableParseData;
fn new<'life0, 'async_trait>(
uri: &'life0 str
) -> Pin<Box<dyn Future<Output = Result<Self::OUT, ConfigParseError>> + Send + 'async_trait>>
where
'life0: 'async_trait,
Self: 'async_trait;
fn list_tables<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Vec<String>, ConfigParseError>> + Send + 'async_trait>>
where
'life0: 'async_trait,
Self: 'async_trait;
fn parse_table_column<'life0, 'life1, 'async_trait>(
&'life0 self,
table: &'life1 String
) -> Pin<Box<dyn Future<Output = Result<Vec<DataField>, ConfigParseError>> + Send + 'async_trait>>
where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait;
}