pub struct DbIter { /* private fields */ }Implementations§
Source§impl DbIter
impl DbIter
pub fn reset(self) -> IterBuilder
pub fn seek_to_start(&mut self)
pub fn seek_to_end(&mut self)
pub fn seek(&mut self, key: &[u8])
pub fn seek_back(&mut self, key: &[u8])
pub fn is_valid(&self) -> bool
pub fn next(&mut self)
pub fn prev(&mut self)
pub fn status(&self) -> RocksDbStatus
pub fn key(&self) -> Result<Option<&[u8]>, RocksDbStatus>
pub fn val(&self) -> Result<Option<&[u8]>, RocksDbStatus>
pub fn pair(&self) -> Result<Option<(&[u8], &[u8])>, RocksDbStatus>
Auto Trait Implementations§
impl Freeze for DbIter
impl RefUnwindSafe for DbIter
impl !Send for DbIter
impl !Sync for DbIter
impl Unpin for DbIter
impl UnsafeUnpin for DbIter
impl UnwindSafe for DbIter
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