pub trait IntoActorResult {
type Output;
// Required method
fn into_actor_result(self) -> ActorResult<Self::Output>;
}
Expand description
Actor methods may return any type implementing this trait.
Required Associated Types§
Required Methods§
Sourcefn into_actor_result(self) -> ActorResult<Self::Output>
fn into_actor_result(self) -> ActorResult<Self::Output>
Perform the conversion to an ActorResult.