pub struct VerificationEngine { /* private fields */ }Expand description
Verification engine for comprehensive model checking
Implementations§
Source§impl VerificationEngine
impl VerificationEngine
Sourcepub fn new(config: VerificationConfig) -> Self
pub fn new(config: VerificationConfig) -> Self
Create new verification engine
Sourcepub fn verify<T: CompileTimeVerifiable>(&mut self) -> VerificationResult
pub fn verify<T: CompileTimeVerifiable>(&mut self) -> VerificationResult
Run comprehensive verification
Sourcepub fn add_custom_check<F>(&mut self, name: impl Into<String>, check: F)
pub fn add_custom_check<F>(&mut self, name: impl Into<String>, check: F)
Add a custom verification check
Sourcepub fn generate_report(&self) -> String
pub fn generate_report(&self) -> String
Generate verification report
Auto Trait Implementations§
impl Freeze for VerificationEngine
impl RefUnwindSafe for VerificationEngine
impl Send for VerificationEngine
impl Sync for VerificationEngine
impl Unpin for VerificationEngine
impl UnwindSafe for VerificationEngine
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more