BatchResult

Type Alias BatchResult 

Source
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>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(BatchError<E>)

Contains the error value