pub enum Zone {
Core,
InnerRing,
MidRing,
OuterRing,
FarEdge,
}Expand description
Spatial zone within the holographic memory space.
Determines the radial region a coordinate falls into, used by constellation detection for clustering nearby memories.
Variants§
Core
Innermost zone (radial < 0.2) — core memories
InnerRing
Inner ring (0.2 ≤ radial < 0.4) — frequently accessed
MidRing
Middle ring (0.4 ≤ radial < 0.6) — standard memories
OuterRing
Outer ring (0.6 ≤ radial < 0.8) — peripheral memories
FarEdge
Far edge (radial ≥ 0.8) — fading/archival memories
Implementations§
Trait Implementations§
impl Copy for Zone
Source§impl<'de> Deserialize<'de> for Zone
impl<'de> Deserialize<'de> for Zone
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 Zone
impl StructuralPartialEq for Zone
Auto Trait Implementations§
impl Freeze for Zone
impl RefUnwindSafe for Zone
impl Send for Zone
impl Sync for Zone
impl Unpin for Zone
impl UnsafeUnpin for Zone
impl UnwindSafe for Zone
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