Type Alias Result
pub type Result<T, E = Status> = Result<T, E>;Available on crate feature
ttrpc only.Expand description
Result type used throughout rama-ttrpc, defaulting the error to Status.
Aliased Type§
pub enum Result<T, E = Status> {
Ok(T),
Err(E),
}