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§
fn with_queue_name_client<NAME>( &'a self, queue_name: NAME, ) -> Self::QueueNameClient
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.