pub(crate) type ResultHandle<'a> = Result<Handle<'a>>;Expand description
Represents one point-query result handle.
A successful handle pins the RocksDB value until it is dropped. Its lifetime remains tied to the database that produced it.
Aliased Type§
pub(crate) enum ResultHandle<'a> {
Ok(Handle<'a>),
Err(Error),
}