pub enum MemPullOpt {
KeepInMemoryOnRead,
DontKeepInMemoryOnRead,
}Expand description
Memory pull options, determines whether data should be cached in memory when pulled from disk,
such as during a get operation.
Variants§
KeepInMemoryOnRead
Reads the value from disk, then retains it in memory
DontKeepInMemoryOnRead
Reads the value from disk, but does not keep it stored in memory
Trait Implementations§
Source§impl Clone for MemPullOpt
impl Clone for MemPullOpt
Source§fn clone(&self) -> MemPullOpt
fn clone(&self) -> MemPullOpt
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 MemPullOpt
impl Debug for MemPullOpt
Source§impl Default for MemPullOpt
impl Default for MemPullOpt
Source§fn default() -> MemPullOpt
fn default() -> MemPullOpt
Returns the “default value” for a type. Read more
impl Copy for MemPullOpt
Auto Trait Implementations§
impl Freeze for MemPullOpt
impl RefUnwindSafe for MemPullOpt
impl Send for MemPullOpt
impl Sync for MemPullOpt
impl Unpin for MemPullOpt
impl UnwindSafe for MemPullOpt
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