pub enum MemoryTierHint {
Durable,
Semantic,
}Expand description
Long-term tier hint for a page-out event (SDK maps to durable vs semantic store).
Variants§
Durable
History compression archive — default durable/session store.
Semantic
Sprint renewal / handoff — semantic long-term pipeline.
Implementations§
Trait Implementations§
Source§impl Clone for MemoryTierHint
impl Clone for MemoryTierHint
Source§fn clone(&self) -> MemoryTierHint
fn clone(&self) -> MemoryTierHint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MemoryTierHint
Source§impl Debug for MemoryTierHint
impl Debug for MemoryTierHint
Source§impl<'de> Deserialize<'de> for MemoryTierHint
impl<'de> Deserialize<'de> for MemoryTierHint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MemoryTierHint
Source§impl PartialEq for MemoryTierHint
impl PartialEq for MemoryTierHint
Source§fn eq(&self, other: &MemoryTierHint) -> bool
fn eq(&self, other: &MemoryTierHint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MemoryTierHint
impl Serialize for MemoryTierHint
impl StructuralPartialEq for MemoryTierHint
Auto Trait Implementations§
impl Freeze for MemoryTierHint
impl RefUnwindSafe for MemoryTierHint
impl Send for MemoryTierHint
impl Sync for MemoryTierHint
impl Unpin for MemoryTierHint
impl UnsafeUnpin for MemoryTierHint
impl UnwindSafe for MemoryTierHint
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