pub struct VerifyResult {
pub ok: bool,
pub errors: Vec<String>,
pub warnings: Vec<String>,
}Fields§
§ok: bool§errors: Vec<String>§warnings: Vec<String>Trait Implementations§
Source§impl Debug for VerifyResult
impl Debug for VerifyResult
Source§impl Default for VerifyResult
impl Default for VerifyResult
Source§fn default() -> VerifyResult
fn default() -> VerifyResult
Returns the “default value” for a type. Read more
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