#[non_exhaustive]pub enum TierOverride {
Auto,
ForceRam,
ForceDisk,
}Expand description
Controls whether a section stays in RAM, on disk, or is auto-managed.
The default (Auto) lets the BufferManager
decide based on memory pressure. Power users can pin a section to a
specific tier for predictable performance.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Auto
Memory-first, spill to disk when budget exceeded (default).
ForceRam
Always keep in RAM. Fail with error if insufficient memory.
ForceDisk
Always use disk (mmap). Minimal RAM footprint.
Trait Implementations§
Source§impl Clone for TierOverride
impl Clone for TierOverride
Source§fn clone(&self) -> TierOverride
fn clone(&self) -> TierOverride
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 TierOverride
impl Debug for TierOverride
Source§impl Default for TierOverride
impl Default for TierOverride
Source§fn default() -> TierOverride
fn default() -> TierOverride
Returns the “default value” for a type. Read more
Source§impl PartialEq for TierOverride
impl PartialEq for TierOverride
impl Copy for TierOverride
impl Eq for TierOverride
impl StructuralPartialEq for TierOverride
Auto Trait Implementations§
impl Freeze for TierOverride
impl RefUnwindSafe for TierOverride
impl Send for TierOverride
impl Sync for TierOverride
impl Unpin for TierOverride
impl UnsafeUnpin for TierOverride
impl UnwindSafe for TierOverride
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.