pub struct VerifierConfig {
pub level: VerificationLevel,
pub allow_unsafe: bool,
pub max_clippy_warnings: usize,
pub timeout_secs: u64,
}Expand description
Configuration for the trace verifier
Fields§
§level: VerificationLevelVerification strictness level
allow_unsafe: boolWhether to allow unsafe blocks
max_clippy_warnings: usizeMaximum allowed clippy warnings (0 for strict)
timeout_secs: u64Compilation timeout in seconds
Trait Implementations§
Source§impl Clone for VerifierConfig
impl Clone for VerifierConfig
Source§fn clone(&self) -> VerifierConfig
fn clone(&self) -> VerifierConfig
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 VerifierConfig
impl Debug for VerifierConfig
Auto Trait Implementations§
impl Freeze for VerifierConfig
impl RefUnwindSafe for VerifierConfig
impl Send for VerifierConfig
impl Sync for VerifierConfig
impl Unpin for VerifierConfig
impl UnsafeUnpin for VerifierConfig
impl UnwindSafe for VerifierConfig
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