pub enum AccountsIndexScanResult {
OnlyKeepInMemoryIfDirty,
KeepInMemory,
Unref,
}
Variants§
OnlyKeepInMemoryIfDirty
if the entry is not in the in-memory index, do not add it unless the entry becomes dirty
KeepInMemory
keep the entry in the in-memory index
Unref
reduce refcount by 1
Trait Implementations§
source§impl Clone for AccountsIndexScanResult
impl Clone for AccountsIndexScanResult
source§fn clone(&self) -> AccountsIndexScanResult
fn clone(&self) -> AccountsIndexScanResult
Returns a copy 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 moreimpl Copy for AccountsIndexScanResult
Auto Trait Implementations§
impl RefUnwindSafe for AccountsIndexScanResult
impl Send for AccountsIndexScanResult
impl Sync for AccountsIndexScanResult
impl Unpin for AccountsIndexScanResult
impl UnwindSafe for AccountsIndexScanResult
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