[][src]Struct azure_sdk_storage_queue::QueueServiceClient

pub struct QueueServiceClient<'a, C> where
    C: Client + Clone
{ pub storage_client: Cow<'a, C>, }

Fields

storage_client: Cow<'a, C>

Trait Implementations

impl<'a, C: Clone> Clone for QueueServiceClient<'a, C> where
    C: Client + Clone
[src]

impl<'a, C: Debug> Debug for QueueServiceClient<'a, C> where
    C: Client + Clone
[src]

impl<'a, C> HasStorageClient for QueueServiceClient<'a, C> where
    C: Client + Clone
[src]

type StorageClient = C

impl<'a, 'b, C> IntoQueueNameClient<'b> for QueueServiceClient<'a, C> where
    C: Client + Clone
[src]

type QueueNameClient = QueueNameClient<'a, 'b, C>

impl<'a, C> QueueService for QueueServiceClient<'a, C> where
    C: Client + Clone
[src]

impl<'a, 'b, C> WithQueueNameClient<'a, 'b> for QueueServiceClient<'a, C> where
    C: Client + Clone
[src]

type QueueNameClient = QueueNameClient<'a, 'b, C>

Auto Trait Implementations

impl<'a, C> RefUnwindSafe for QueueServiceClient<'a, C> where
    C: RefUnwindSafe

impl<'a, C> Send for QueueServiceClient<'a, C>

impl<'a, C> Sync for QueueServiceClient<'a, C>

impl<'a, C> Unpin for QueueServiceClient<'a, C> where
    C: Unpin

impl<'a, C> UnwindSafe for QueueServiceClient<'a, C> where
    C: RefUnwindSafe + 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> Instrument 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>,