pub trait QueuePausedQuery<Origin> {
    // Required method
    fn is_paused(origin: &Origin) -> bool;
}
Expand description

Provides information on paused queues.

Required Methods§

fn is_paused(origin: &Origin) -> bool

Whether this queue is paused.

Implementations on Foreign Types§

§

impl<Origin> QueuePausedQuery<Origin> for ()

Implementors§