pub enum ResolutionLayer {
Algorithmic,
NanoModel,
RoomLora,
FleetCoord,
CloudEscalation,
}Variants§
Algorithmic
Layer 0: Pure algorithmic (deadband, thresholds)
NanoModel
Layer 1: Nano-model (350M, anomaly detection)
RoomLora
Layer 2: Room LoRA (350M + LoRA, room-specific reasoning)
FleetCoord
Layer 3: Fleet coordinator (1.2B, cross-room)
CloudEscalation
Layer 4: Cloud LLM (API call, novel situations)
Trait Implementations§
Source§impl Clone for ResolutionLayer
impl Clone for ResolutionLayer
Source§fn clone(&self) -> ResolutionLayer
fn clone(&self) -> ResolutionLayer
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 moreSource§impl Debug for ResolutionLayer
impl Debug for ResolutionLayer
Source§impl<'de> Deserialize<'de> for ResolutionLayer
impl<'de> Deserialize<'de> for ResolutionLayer
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
Source§impl PartialEq for ResolutionLayer
impl PartialEq for ResolutionLayer
Source§fn eq(&self, other: &ResolutionLayer) -> bool
fn eq(&self, other: &ResolutionLayer) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ResolutionLayer
impl Serialize for ResolutionLayer
impl Copy for ResolutionLayer
impl StructuralPartialEq for ResolutionLayer
Auto Trait Implementations§
impl Freeze for ResolutionLayer
impl RefUnwindSafe for ResolutionLayer
impl Send for ResolutionLayer
impl Sync for ResolutionLayer
impl Unpin for ResolutionLayer
impl UnsafeUnpin for ResolutionLayer
impl UnwindSafe for ResolutionLayer
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