ListQueues

Trait ListQueues 

Source
pub trait ListQueues: Backend {
    // Required method
    fn list_queues(
        &self,
    ) -> impl Future<Output = Result<Vec<QueueInfo>, Self::Error>> + Send;
}
Expand description

Allows listing all queues available in the backend

Required Methods§

Source

fn list_queues( &self, ) -> impl Future<Output = Result<Vec<QueueInfo>, Self::Error>> + Send

List all available queues in the backend

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§