Type Alias assembly_fdb::ro::handle::Result

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

Custom result type for this module

Aliased Type§

enum Result<'a, T> {
    Ok(BaseHandle<&'a [u8], T>),
    Err(BufferError),
}

Variants§

§1.0.0

Ok(BaseHandle<&'a [u8], T>)

Contains the success value

§1.0.0

Err(BufferError)

Contains the error value