pub struct SensorConfig {
pub enabled: bool,
pub routing: Option<SensorRoutingConfig>,
pub salience: Option<SalienceConfig>,
pub token_budget: Option<TokenBudgetConfig>,
pub stories: Option<StoryCorrelationConfig>,
pub sources: Vec<SensorSourceConfig>,
}Expand description
Sensor layer configuration for continuous perception.
Fields§
§enabled: boolMaster switch for the sensor layer. Defaults to true.
routing: Option<SensorRoutingConfig>Model routing configuration for triage decisions.
salience: Option<SalienceConfig>Salience scoring weights for triage promotion.
token_budget: Option<TokenBudgetConfig>Token budget limits for the sensor pipeline.
stories: Option<StoryCorrelationConfig>Story correlation settings.
sources: Vec<SensorSourceConfig>Sensor source definitions.
Trait Implementations§
Source§impl Clone for SensorConfig
impl Clone for SensorConfig
Source§fn clone(&self) -> SensorConfig
fn clone(&self) -> SensorConfig
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 SensorConfig
impl Debug for SensorConfig
Source§impl<'de> Deserialize<'de> for SensorConfig
impl<'de> Deserialize<'de> for SensorConfig
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
Auto Trait Implementations§
impl Freeze for SensorConfig
impl RefUnwindSafe for SensorConfig
impl Send for SensorConfig
impl Sync for SensorConfig
impl Unpin for SensorConfig
impl UnsafeUnpin for SensorConfig
impl UnwindSafe for SensorConfig
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