Trait actix::prelude::ResponseType [] [src]

pub trait ResponseType {
    type Item;
    type Error;
}

Message response type

Associated Types

The type of value that this message will resolved with if it is successful.

The type of error that this message will resolve with if it fails in a normal fashion.

Implementors