pub enum IntegrityResult {
Valid,
Broken(IntegrityError),
}Expand description
Result reported by IntegrityChain::verify_chain.
Variants§
Valid
Broken(IntegrityError)
Trait Implementations§
Source§impl Clone for IntegrityResult
impl Clone for IntegrityResult
Source§fn clone(&self) -> IntegrityResult
fn clone(&self) -> IntegrityResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntegrityResult
impl Debug for IntegrityResult
Source§impl PartialEq for IntegrityResult
impl PartialEq for IntegrityResult
impl StructuralPartialEq for IntegrityResult
Auto Trait Implementations§
impl Freeze for IntegrityResult
impl RefUnwindSafe for IntegrityResult
impl Send for IntegrityResult
impl Sync for IntegrityResult
impl Unpin for IntegrityResult
impl UnsafeUnpin for IntegrityResult
impl UnwindSafe for IntegrityResult
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