Trait CollectionNameSupport

Source
pub trait CollectionNameSupport<'a> {
    type O;

    // Required method
    fn with_collection_name(
        self,
        collection_name: &'a dyn CollectionName,
    ) -> Self::O;
}

Required Associated Types§

Source

type O

Required Methods§

Source

fn with_collection_name( self, collection_name: &'a dyn CollectionName, ) -> Self::O

Implementors§

Source§

impl<'a, C, OfferSet, IndexingPolicySet, PartitionKeySet> CollectionNameSupport<'a> for CreateCollectionBuilder<'a, C, OfferSet, No, IndexingPolicySet, PartitionKeySet>
where OfferSet: ToAssign, IndexingPolicySet: ToAssign, PartitionKeySet: ToAssign, C: CosmosClient,

Source§

type O = CreateCollectionBuilder<'a, C, OfferSet, Yes, IndexingPolicySet, PartitionKeySet>