pub type ActorResult<T> = Result<Produces<T>, ActorError>;Expand description
Short alias for a Result<Produces<T>, ActorError>.
Aliased Type§
pub enum ActorResult<T> {
Ok(Produces<T>),
Err(Box<dyn Error + Send + Sync>),
}Variants§
Ok(Produces<T>)
Contains the success value
Err(Box<dyn Error + Send + Sync>)
Contains the error value
Trait Implementations§
Source§impl<T> IntoActorResult for ActorResult<T>
impl<T> IntoActorResult for ActorResult<T>
Source§fn into_actor_result(self) -> ActorResult<T>
fn into_actor_result(self) -> ActorResult<T>
Perform the conversion to an ActorResult.