#[repr(C)]pub struct fdb_kv_iterator {
pub curr_kv: fdb_kv,
pub iterated_cnt: u32,
pub iterated_obj_bytes: usize,
pub iterated_value_bytes: usize,
pub sector_addr: u32,
pub traversed_len: u32,
}Fields§
§curr_kv: fdb_kv< Current KV we get from the iterator
iterated_cnt: u32< How many KVs have we iterated already
iterated_obj_bytes: usize< Total storage size of KVs we have iterated.
iterated_value_bytes: usize< Total value size of KVs we have iterated.
sector_addr: u32< Current sector address we’re iterating. DO NOT touch it.
traversed_len: u32< Traversed sector total length.
Trait Implementations§
Source§impl Clone for fdb_kv_iterator
impl Clone for fdb_kv_iterator
Source§fn clone(&self) -> fdb_kv_iterator
fn clone(&self) -> fdb_kv_iterator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for fdb_kv_iterator
impl Debug for fdb_kv_iterator
Source§impl Default for fdb_kv_iterator
impl Default for fdb_kv_iterator
impl Copy for fdb_kv_iterator
Auto Trait Implementations§
impl Freeze for fdb_kv_iterator
impl RefUnwindSafe for fdb_kv_iterator
impl Send for fdb_kv_iterator
impl Sync for fdb_kv_iterator
impl Unpin for fdb_kv_iterator
impl UnwindSafe for fdb_kv_iterator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more