pub struct AutomationConfig {Show 13 fields
pub timeout_nudges: bool,
pub standups: bool,
pub failure_pattern_detection: bool,
pub triage_interventions: bool,
pub review_interventions: bool,
pub owned_task_interventions: bool,
pub manager_dispatch_interventions: bool,
pub architect_utilization_interventions: bool,
pub replenishment_threshold: Option<usize>,
pub intervention_idle_grace_secs: u64,
pub intervention_cooldown_secs: u64,
pub utilization_recovery_interval_secs: u64,
pub commit_before_reset: bool,
}Fields§
§timeout_nudges: bool§standups: bool§failure_pattern_detection: bool§triage_interventions: bool§review_interventions: bool§owned_task_interventions: bool§manager_dispatch_interventions: bool§architect_utilization_interventions: bool§replenishment_threshold: Option<usize>§intervention_idle_grace_secs: u64§intervention_cooldown_secs: u64§utilization_recovery_interval_secs: u64§commit_before_reset: boolTrait Implementations§
Source§impl Clone for AutomationConfig
impl Clone for AutomationConfig
Source§fn clone(&self) -> AutomationConfig
fn clone(&self) -> AutomationConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 AutomationConfig
impl Debug for AutomationConfig
Source§impl Default for AutomationConfig
impl Default for AutomationConfig
Source§impl<'de> Deserialize<'de> for AutomationConfig
impl<'de> Deserialize<'de> for AutomationConfig
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 AutomationConfig
impl RefUnwindSafe for AutomationConfig
impl Send for AutomationConfig
impl Sync for AutomationConfig
impl Unpin for AutomationConfig
impl UnsafeUnpin for AutomationConfig
impl UnwindSafe for AutomationConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.