Type Alias BufferResult

Source
pub type BufferResult<T> = Result<T, BufferError>;

Aliased Type§

enum BufferResult<T> {
    Ok(T),
    Err(BufferError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(BufferError)

Contains the error value