pub trait VerificationReportExt {
// Required methods
fn result(&self) -> VerifyResult;
fn has_conflicts(&self) -> bool;
fn conflicts(&self) -> Vec<VerifyConflict>;
}Required Methods§
fn result(&self) -> VerifyResult
fn has_conflicts(&self) -> bool
fn conflicts(&self) -> Vec<VerifyConflict>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".