pub struct AutoPilotConfig {
pub enabled: bool,
pub dedup_threshold: f32,
pub dedup_interval_hours: u64,
pub consolidation_interval_hours: u64,
}Expand description
AutoPilot configuration
Fields§
§enabled: bool§dedup_threshold: f32§dedup_interval_hours: u64§consolidation_interval_hours: u64Trait Implementations§
Source§impl Clone for AutoPilotConfig
impl Clone for AutoPilotConfig
Source§fn clone(&self) -> AutoPilotConfig
fn clone(&self) -> AutoPilotConfig
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 AutoPilotConfig
impl Debug for AutoPilotConfig
Source§impl<'de> Deserialize<'de> for AutoPilotConfig
impl<'de> Deserialize<'de> for AutoPilotConfig
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 AutoPilotConfig
impl RefUnwindSafe for AutoPilotConfig
impl Send for AutoPilotConfig
impl Sync for AutoPilotConfig
impl Unpin for AutoPilotConfig
impl UnsafeUnpin for AutoPilotConfig
impl UnwindSafe for AutoPilotConfig
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