pub type SharedResult<T> = Result<T, Arc<BatchError>>;
Expand description
Batch result with shared error.
Aliased Type§
enum SharedResult<T> {
Ok(T),
Err(Arc<BatchError>),
}
pub type SharedResult<T> = Result<T, Arc<BatchError>>;
Batch result with shared error.
enum SharedResult<T> {
Ok(T),
Err(Arc<BatchError>),
}