pub struct SignalsConfig {
pub skip_tests: bool,
}Expand description
Signal detector configuration.
Fields§
§skip_tests: boolWhether to skip signal detection in test files (default: false).
Set to true to suppress signals in test files.
Trait Implementations§
Source§impl Clone for SignalsConfig
impl Clone for SignalsConfig
Source§fn clone(&self) -> SignalsConfig
fn clone(&self) -> SignalsConfig
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 SignalsConfig
impl Debug for SignalsConfig
Source§impl Default for SignalsConfig
impl Default for SignalsConfig
Source§fn default() -> SignalsConfig
fn default() -> SignalsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignalsConfig
impl<'de> Deserialize<'de> for SignalsConfig
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 SignalsConfig
impl RefUnwindSafe for SignalsConfig
impl Send for SignalsConfig
impl Sync for SignalsConfig
impl Unpin for SignalsConfig
impl UnsafeUnpin for SignalsConfig
impl UnwindSafe for SignalsConfig
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