pub struct BugSettings {
pub default_enabled: bool,
pub overrides: Vec<(String, bool)>,
}Expand description
Raw bug-toggle input parsed from sim-config settings, unvalidated.
Fields§
§default_enabled: bool§overrides: Vec<(String, bool)>Trait Implementations§
Source§impl Clone for BugSettings
impl Clone for BugSettings
Source§fn clone(&self) -> BugSettings
fn clone(&self) -> BugSettings
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 BugSettings
impl Debug for BugSettings
Auto Trait Implementations§
impl Freeze for BugSettings
impl RefUnwindSafe for BugSettings
impl Send for BugSettings
impl Sync for BugSettings
impl Unpin for BugSettings
impl UnsafeUnpin for BugSettings
impl UnwindSafe for BugSettings
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