pub enum SonaMode {
RealTime,
Balanced,
Research,
Edge,
}Expand description
Operating mode for the SONA engine.
Variants§
RealTime
Real-time adaptation (< 0.05ms target).
Balanced
Balanced between speed and depth.
Research
Research mode — deep analysis, no time constraints.
Edge
Edge device — minimal memory footprint.
Trait Implementations§
impl Copy for SonaMode
Source§impl<'de> Deserialize<'de> for SonaMode
impl<'de> Deserialize<'de> for SonaMode
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 SonaMode
impl StructuralPartialEq for SonaMode
Auto Trait Implementations§
impl Freeze for SonaMode
impl RefUnwindSafe for SonaMode
impl Send for SonaMode
impl Sync for SonaMode
impl Unpin for SonaMode
impl UnsafeUnpin for SonaMode
impl UnwindSafe for SonaMode
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