pub struct ListCollectionsBuilder<'a, C>where
C: CosmosClient,{ /* private fields */ }
Implementations§
Source§impl<'a, C> ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> ListCollectionsBuilder<'a, C>where
C: CosmosClient,
pub async fn execute(&self) -> Result<ListCollectionsResponse, AzureError>
pub fn stream( &self, ) -> impl Stream<Item = Result<ListCollectionsResponse, AzureError>> + '_
Trait Implementations§
Source§impl<'a, C> ActivityIdOption<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> ActivityIdOption<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
fn activity_id(&self) -> Option<&'a str>
fn add_header(&self, builder: Builder) -> Builder
Source§impl<'a, C> ActivityIdSupport<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> ActivityIdSupport<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
type O = ListCollectionsBuilder<'a, C>
fn with_activity_id(self, activity_id: &'a str) -> Self::O
Source§impl<'a, C> Clone for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> Clone for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
Source§impl<'a, C> ConsistencyLevelOption<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> ConsistencyLevelOption<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
fn consistency_level(&self) -> Option<ConsistencyLevel<'a>>
fn add_header(&self, builder: Builder) -> Builder
Source§impl<'a, C> ConsistencyLevelSupport<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> ConsistencyLevelSupport<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
type O = ListCollectionsBuilder<'a, C>
fn with_consistency_level( self, consistency_level: ConsistencyLevel<'a>, ) -> Self::O
Source§impl<'a, C> ContinuationOption<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> ContinuationOption<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
fn continuation(&self) -> Option<&'a str>
fn add_header(&self, builder: Builder) -> Builder
Source§impl<'a, C> ContinuationSupport<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> ContinuationSupport<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
type O = ListCollectionsBuilder<'a, C>
fn with_continuation(self, continuation: &'a str) -> Self::O
Source§impl<'a, C> DatabaseClientRequired<'a, C> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> DatabaseClientRequired<'a, C> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
fn database_client(&self) -> &'a dyn DatabaseClient<C>
Source§impl<'a, C> Debug for ListCollectionsBuilder<'a, C>where
C: CosmosClient + Debug,
impl<'a, C> Debug for ListCollectionsBuilder<'a, C>where
C: CosmosClient + Debug,
Source§impl<'a, C> MaxItemCountOption for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> MaxItemCountOption for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
fn max_item_count(&self) -> i32
fn add_header(&self, builder: Builder) -> Builder
Source§impl<'a, C> MaxItemCountSupport for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> MaxItemCountSupport for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
type O = ListCollectionsBuilder<'a, C>
fn with_max_item_count(self, max_item_count: i32) -> Self::O
Source§impl<'a, C> UserAgentOption<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> UserAgentOption<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
fn user_agent(&self) -> Option<&'a str>
fn add_header(&self, builder: Builder) -> Builder
Source§impl<'a, C> UserAgentSupport<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
impl<'a, C> UserAgentSupport<'a> for ListCollectionsBuilder<'a, C>where
C: CosmosClient,
type O = ListCollectionsBuilder<'a, C>
fn with_user_agent(self, user_agent: &'a str) -> Self::O
Auto Trait Implementations§
impl<'a, C> Freeze for ListCollectionsBuilder<'a, C>
impl<'a, C> !RefUnwindSafe for ListCollectionsBuilder<'a, C>
impl<'a, C> Send for ListCollectionsBuilder<'a, C>
impl<'a, C> Sync for ListCollectionsBuilder<'a, C>
impl<'a, C> Unpin for ListCollectionsBuilder<'a, C>
impl<'a, C> !UnwindSafe for ListCollectionsBuilder<'a, C>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more