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