Trait CatalogSourceQueryOperations
Source pub trait CatalogSourceQueryOperations {
// Required methods
fn find_source_by_name<'life0, 'life1, 'async_trait>(
&'life0 mut self,
namespace: NamespaceId,
source: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Option<SourceDef>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn find_source<'life0, 'async_trait>(
&'life0 mut self,
id: SourceId,
) -> Pin<Box<dyn Future<Output = Result<Option<SourceDef>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_source<'life0, 'async_trait>(
&'life0 mut self,
id: SourceId,
) -> Pin<Box<dyn Future<Output = Result<SourceDef>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_source_by_name<'life0, 'life1, 'async_trait>(
&'life0 mut self,
namespace: NamespaceId,
name: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<SourceDef>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}