Skip to main content

BufferResult

Type Alias BufferResult 

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

Result type for buffer operations

Aliased Type§

pub 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