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§
fn into_queue_name_client<NAME>(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.