pub type TraceResult<T> = Result<T, TraceError>;
Expand description
Describe the result of operations in tracing API.
Aliased Type§
pub enum TraceResult<T> {
Ok(T),
Err(TraceError),
}
pub type TraceResult<T> = Result<T, TraceError>;
Describe the result of operations in tracing API.
pub enum TraceResult<T> {
Ok(T),
Err(TraceError),
}