pub type ActorResult<T> = Result<T, ActrError>;
Result type for actor RPC calls.
pub enum ActorResult<T> { Ok(T), Err(ActrError), }
Contains the success value
Contains the error value