pub enum AccountsIndexScanResult {
None,
KeepInMemory,
Unref,
}
Variants§
None
if the entry is not in the in-memory index, do not add it, make no modifications to it
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 more