Enum redis::ControlFlow[][src]

pub enum ControlFlow<U> {
    Continue,
    Break(U),
}

Allows pubsub callbacks to stop receiving messages.

Arbitrary data may be returned from Break.

Variants

Auto Trait Implementations

impl<U> Send for ControlFlow<U> where
    U: Send

impl<U> Sync for ControlFlow<U> where
    U: Sync