Trait WithQueueNameClient

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

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

Required Associated Types§

Required Methods§

Source

fn with_queue_name_client<NAME>( &'a 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> WithQueueNameClient<'a, 'b> for QueueServiceClient<'a, C>
where C: Client + Clone,