pub struct ChainVerificationResult {
pub valid: bool,
pub entries_verified: usize,
pub issues: Vec<ChainIssue>,
}Expand description
Result of chain verification.
Fields§
§valid: boolWhether the chain is valid.
entries_verified: usizeNumber of entries verified.
issues: Vec<ChainIssue>Issues found (empty if valid).
Trait Implementations§
Source§impl Clone for ChainVerificationResult
impl Clone for ChainVerificationResult
Source§fn clone(&self) -> ChainVerificationResult
fn clone(&self) -> ChainVerificationResult
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 moreAuto Trait Implementations§
impl Freeze for ChainVerificationResult
impl RefUnwindSafe for ChainVerificationResult
impl Send for ChainVerificationResult
impl Sync for ChainVerificationResult
impl Unpin for ChainVerificationResult
impl UnsafeUnpin for ChainVerificationResult
impl UnwindSafe for ChainVerificationResult
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