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

Provides information on paused queues.

Required Methods§

source

fn is_paused(origin: &Origin) -> bool

Whether this queue is paused.

Implementations on Foreign Types§

source§

impl<Origin> QueuePausedQuery<Origin> for ()

Implementors§