pub type BatchResult<T, E> = Result<T, BatchError<E>>;Expand description
Result type for batch operations.
Aliased Type§
pub enum BatchResult<T, E> {
Ok(T),
Err(BatchError<E>),
}pub type BatchResult<T, E> = Result<T, BatchError<E>>;Result type for batch operations.
pub enum BatchResult<T, E> {
Ok(T),
Err(BatchError<E>),
}