Trait IntoQueueNameClient

Source
pub trait IntoQueueNameClient<'b>:
    Debug
    + Send
    + Sync {
    type QueueNameClient: QueueNameService;

    // Required method
    fn into_queue_name_client<NAME>(
        self,
        queue_name: NAME,
    ) -> Self::QueueNameClient
       where NAME: Into<Cow<'b, str>>;
}

Required Associated Types§

Required Methods§

Source

fn into_queue_name_client<NAME>(self, queue_name: NAME) -> Self::QueueNameClient
where NAME: Into<Cow<'b, str>>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

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