pub enum IndexLimitMb {
Unspecified,
Limit(usize),
InMemOnly,
}
Expand description
specification of how much memory in-mem portion of account index can use
Variants§
Unspecified
nothing explicit specified, so default
Limit(usize)
limit was specified, use disk index for rest
InMemOnly
in-mem-only was specified, no disk index
Trait Implementations§
source§impl Clone for IndexLimitMb
impl Clone for IndexLimitMb
source§fn clone(&self) -> IndexLimitMb
fn clone(&self) -> IndexLimitMb
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