pub struct BoardConfig {
pub rotation_threshold: u32,
pub auto_dispatch: bool,
pub dispatch_stabilization_delay_secs: u64,
pub dispatch_dedup_window_secs: u64,
pub dispatch_manual_cooldown_secs: u64,
}Fields§
§rotation_threshold: u32§auto_dispatch: bool§dispatch_stabilization_delay_secs: u64§dispatch_dedup_window_secs: u64§dispatch_manual_cooldown_secs: u64Trait Implementations§
Source§impl Clone for BoardConfig
impl Clone for BoardConfig
Source§fn clone(&self) -> BoardConfig
fn clone(&self) -> BoardConfig
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 BoardConfig
impl Debug for BoardConfig
Source§impl Default for BoardConfig
impl Default for BoardConfig
Source§impl<'de> Deserialize<'de> for BoardConfig
impl<'de> Deserialize<'de> for BoardConfig
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 BoardConfig
impl RefUnwindSafe for BoardConfig
impl Send for BoardConfig
impl Sync for BoardConfig
impl Unpin for BoardConfig
impl UnsafeUnpin for BoardConfig
impl UnwindSafe for BoardConfig
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