pub struct CheckerOptions {
pub default_timeout: Option<Duration>,
pub default_module_name: String,
pub default_definitions_module_name: String,
}Expand description
Default checker configuration used by Checker.
Fields§
§default_timeout: Option<Duration>Optional timeout applied to checks that do not override it.
default_module_name: StringDefault module label used for source checks.
default_definitions_module_name: StringDefault module label used for definition loading.
Trait Implementations§
Source§impl Clone for CheckerOptions
impl Clone for CheckerOptions
Source§fn clone(&self) -> CheckerOptions
fn clone(&self) -> CheckerOptions
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 CheckerOptions
impl Debug for CheckerOptions
Auto Trait Implementations§
impl Freeze for CheckerOptions
impl RefUnwindSafe for CheckerOptions
impl Send for CheckerOptions
impl Sync for CheckerOptions
impl Unpin for CheckerOptions
impl UnsafeUnpin for CheckerOptions
impl UnwindSafe for CheckerOptions
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