pub struct LevelDBIteratorInner { /* private fields */ }
Implementations§
Source§impl LevelDBIteratorInner
impl LevelDBIteratorInner
pub fn new() -> Self
Sourcepub fn register_cleanup(
&mut self,
func: LevelDBIteratorCleanupFunction,
arg1: *mut c_void,
arg2: *mut c_void,
)
pub fn register_cleanup( &mut self, func: LevelDBIteratorCleanupFunction, arg1: *mut c_void, arg2: *mut c_void, )
| Clients are allowed to register | function/arg1/arg2 triples that will be | invoked when this iterator is destroyed. | | Note that unlike all of the preceding | methods, this method is not abstract and | therefore clients should not override it.
Trait Implementations§
Source§impl Default for LevelDBIteratorInner
impl Default for LevelDBIteratorInner
Source§fn default() -> LevelDBIteratorInner
fn default() -> LevelDBIteratorInner
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LevelDBIteratorInner
impl RefUnwindSafe for LevelDBIteratorInner
impl !Send for LevelDBIteratorInner
impl !Sync for LevelDBIteratorInner
impl Unpin for LevelDBIteratorInner
impl UnwindSafe for LevelDBIteratorInner
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