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