Trait vector_api_client::test::TestQueryExt
source · pub trait TestQueryExt {
// Required methods
async fn component_links_query(
&self,
after: Option<String>,
before: Option<String>,
first: Option<i64>,
last: Option<i64>,
) -> QueryResult<ComponentLinksQuery>;
async fn file_source_metrics_query(
&self,
after: Option<String>,
before: Option<String>,
first: Option<i64>,
last: Option<i64>,
) -> QueryResult<FileSourceMetricsQuery>;
async fn component_by_component_key_query(
&self,
component_id: &str,
) -> QueryResult<ComponentByComponentKeyQuery>;
async fn components_connection_query(
&self,
after: Option<String>,
before: Option<String>,
first: Option<i64>,
last: Option<i64>,
) -> QueryResult<ComponentsConnectionQuery>;
}
Required Methods§
async fn component_links_query( &self, after: Option<String>, before: Option<String>, first: Option<i64>, last: Option<i64>, ) -> QueryResult<ComponentLinksQuery>
async fn file_source_metrics_query( &self, after: Option<String>, before: Option<String>, first: Option<i64>, last: Option<i64>, ) -> QueryResult<FileSourceMetricsQuery>
async fn component_by_component_key_query( &self, component_id: &str, ) -> QueryResult<ComponentByComponentKeyQuery>
async fn components_connection_query( &self, after: Option<String>, before: Option<String>, first: Option<i64>, last: Option<i64>, ) -> QueryResult<ComponentsConnectionQuery>
Object Safety§
This trait is not object safe.