Result

Type Alias Result 

Source
pub type Result<'a, T> = Result<Handle<'a, T>, BufferError>;
Expand description

Custom result type for this module

Aliased Type§

pub enum Result<'a, T> {
    Ok(BaseHandle<Buffer<'a>, T>),
    Err(BufferError),
}

Variants§

§1.0.0

Ok(BaseHandle<Buffer<'a>, T>)

Contains the success value

§1.0.0

Err(BufferError)

Contains the error value