Enum futures_router_sink::RouterSinkError [] [src]

pub enum RouterSinkError<A, B> {
    Left(A),
    Right(B),
}

Encapsulate errors from both Sinks

Variants

An error occured in the left route sink

An error occured in the right route sink

Trait Implementations

impl<A, B> Display for RouterSinkError<A, B> where
    A: Display,
    B: Display
[src]

Formats the value using the given formatter. Read more

impl<A, B> Debug for RouterSinkError<A, B> where
    A: Debug,
    B: Debug
[src]

Formats the value using the given formatter.