[][src]Trait act_zero::IntoActorResult

pub trait IntoActorResult {
    type Output;
    pub fn into_actor_result(self) -> ActorResult<Self::Output>;
}

Actor methods may return any type implementing this trait.

Associated Types

type Output[src]

The type to be sent back to the caller.

Loading content...

Required methods

pub fn into_actor_result(self) -> ActorResult<Self::Output>[src]

Perform the conversion to an ActorResult.

Loading content...

Implementations on Foreign Types

impl IntoActorResult for ()[src]

Loading content...

Implementors

impl<T> IntoActorResult for ActorResult<T>[src]

type Output = T

Loading content...