[][src]Struct azure_sdk_cosmos::clients::DocumentStruct

pub struct DocumentStruct<'a, 'b, C, D, COLL> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone,
    COLL: CollectionClient<C, D> + Clone
{ /* fields omitted */ }

Trait Implementations

impl<'a, 'b, C: Clone, D: Clone, COLL: Clone> Clone for DocumentStruct<'a, 'b, C, D, COLL> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone,
    COLL: CollectionClient<C, D> + Clone
[src]

impl<'a, 'b, C: Debug, D: Debug, COLL: Debug> Debug for DocumentStruct<'a, 'b, C, D, COLL> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone,
    COLL: CollectionClient<C, D> + Clone
[src]

impl<'a, 'b, C, D, COLL> DocumentClient<C, D, COLL> for DocumentStruct<'a, 'b, C, D, COLL> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone,
    COLL: CollectionClient<C, D> + Clone
[src]

impl<'a, 'b, C, D, COLL> HasCollectionClient<C, D, COLL> for DocumentStruct<'a, 'b, C, D, COLL> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone,
    COLL: CollectionClient<C, D> + Clone
[src]

impl<'a, 'b, C, D, COLL> HasCosmosClient<C> for DocumentStruct<'a, 'b, C, D, COLL> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone,
    COLL: CollectionClient<C, D> + Clone
[src]

impl<'a, 'b, C, D, COLL> HasDatabaseClient<C, D> for DocumentStruct<'a, 'b, C, D, COLL> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone,
    COLL: CollectionClient<C, D> + Clone
[src]

impl<'a, 'b, C, D, COLL> HasHyperClient for DocumentStruct<'a, 'b, C, D, COLL> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone,
    COLL: CollectionClient<C, D> + Clone
[src]

impl<'a, 'b, C, D, COLL> IntoAttachmentClient<'a, C, D, COLL, DocumentStruct<'a, 'b, C, D, COLL>, AttachmentStruct<'a, C, D, COLL, DocumentStruct<'a, 'b, C, D, COLL>>> for DocumentStruct<'a, 'b, C, D, COLL> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone,
    COLL: CollectionClient<C, D> + Clone
[src]

impl<'a, 'b, C, D> IntoDocumentClient<'b, C, D, CollectionStruct<'a, C, D>, DocumentStruct<'a, 'b, C, D, CollectionStruct<'a, C, D>>> for CollectionStruct<'a, C, D> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone
[src]

impl<'a, 'b, C, D, COLL> WithAttachmentClient<'a, C, D, COLL, DocumentStruct<'a, 'b, C, D, COLL>, AttachmentStruct<'a, C, D, COLL, DocumentStruct<'a, 'b, C, D, COLL>>> for DocumentStruct<'a, 'b, C, D, COLL> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone,
    COLL: CollectionClient<C, D> + Clone
[src]

impl<'a, 'b, C, D> WithDocumentClient<'a, 'b, C, D, CollectionStruct<'a, C, D>, DocumentStruct<'a, 'b, C, D, CollectionStruct<'a, C, D>>> for CollectionStruct<'a, C, D> where
    C: CosmosClient + Clone,
    D: DatabaseClient<C> + Clone
[src]

Auto Trait Implementations

impl<'a, 'b, C, D, COLL> RefUnwindSafe for DocumentStruct<'a, 'b, C, D, COLL> where
    C: RefUnwindSafe,
    COLL: RefUnwindSafe,
    D: RefUnwindSafe

impl<'a, 'b, C, D, COLL> Send for DocumentStruct<'a, 'b, C, D, COLL> where
    C: Send,
    COLL: Send + Sync,
    D: Send

impl<'a, 'b, C, D, COLL> Sync for DocumentStruct<'a, 'b, C, D, COLL> where
    C: Sync,
    COLL: Sync,
    D: Sync

impl<'a, 'b, C, D, COLL> Unpin for DocumentStruct<'a, 'b, C, D, COLL> where
    C: Unpin,
    COLL: Unpin,
    D: Unpin

impl<'a, 'b, C, D, COLL> UnwindSafe for DocumentStruct<'a, 'b, C, D, COLL> where
    C: UnwindSafe,
    COLL: RefUnwindSafe + UnwindSafe,
    D: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,