Skip to main content

ActorResult

Type Alias ActorResult 

Source
pub type ActorResult<T> = Result<T, ActrError>;
Expand description

Result type for actor RPC calls.

Aliased Type§

pub enum ActorResult<T> {
    Ok(T),
    Err(ActrError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ActrError)

Contains the error value