pub trait ActorResultExt {
    type Error;
    fn err_request(self, request: ActorRequest) -> ActorResult<Self::Error>
    where
        Self: Sized
; }
Expand description

ActorResult extension trait

Associated Types

The actor error

Required methods

The error request

Implementations on Foreign Types

Implementors