type SendMsg<Fut> = Result<<Fut as Future>::Output, Box<dyn Any + Send + 'static>>;

Aliased Type§

enum SendMsg<Fut> {
    Ok(<Fut as Future>::Output),
    Err(Box<dyn Any + Send, Global>),
}

Variants§

§1.0.0

Ok(<Fut as Future>::Output)

Contains the success value

§1.0.0

Err(Box<dyn Any + Send, Global>)

Contains the error value