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§
Ok(BaseHandle<Buffer<'a>, T>)
Contains the success value
Err(BufferError)
Contains the error value