pub struct VerifyResult {
pub errors: Vec<ErrorEntry>,
pub provisional_reasons: Vec<String>,
pub insufficient_reasons: Vec<String>,
pub summary: Map<String, Value>,
}Expand description
Mirrors Python’s VerifyResult (as_dict produces the same JSON shape).
Fields§
§errors: Vec<ErrorEntry>§provisional_reasons: Vec<String>§insufficient_reasons: Vec<String>§summary: Map<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for VerifyResult
impl Clone for VerifyResult
Source§impl Debug for VerifyResult
impl Debug for VerifyResult
Auto Trait Implementations§
impl Freeze for VerifyResult
impl RefUnwindSafe for VerifyResult
impl Send for VerifyResult
impl Sync for VerifyResult
impl Unpin for VerifyResult
impl UnsafeUnpin for VerifyResult
impl UnwindSafe for VerifyResult
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