pub trait Metadata {
    fn schema_names<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Vec<String, Global>, Error>> + 'async_trait, Global>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn version(&self) -> String { ... } }

Required methods

Provided methods

Implementors