pub type ActorResult<T> = Result<T, ProtocolError>;Expand description
Actor result type - commonly used in framework and runtime
Aliased Type§
pub enum ActorResult<T> {
Ok(T),
Err(ProtocolError),
}pub type ActorResult<T> = Result<T, ProtocolError>;Actor result type - commonly used in framework and runtime
pub enum ActorResult<T> {
Ok(T),
Err(ProtocolError),
}