[][src]Type Definition maxim::ActorResult

type ActorResult<State> = Result<(State, Status), StdError>;

A type for a result from an actor's message processor. A Result::Err is treated as a fatal error, and the Actor will be stopped.