[][src]Struct azure_sdk_storage_queue::QueueNameClient

pub struct QueueNameClient<'a, 'b, C> where
    C: Client + Clone
{ pub storage_client: Cow<'a, C>, pub queue_name: Cow<'b, str>, }

Fields

storage_client: Cow<'a, C>queue_name: Cow<'b, str>

Trait Implementations

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

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

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

type StorageClient = C

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

Auto Trait Implementations

impl<'a, 'b, C> RefUnwindSafe for QueueNameClient<'a, 'b, C> where
    C: RefUnwindSafe

impl<'a, 'b, C> Send for QueueNameClient<'a, 'b, C>

impl<'a, 'b, C> Sync for QueueNameClient<'a, 'b, C>

impl<'a, 'b, C> Unpin for QueueNameClient<'a, 'b, C> where
    C: Unpin

impl<'a, 'b, C> UnwindSafe for QueueNameClient<'a, 'b, 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>,