pub struct PrecheckResult {
pub passed: bool,
pub checks: Vec<PrecheckItem>,
}Fields§
§passed: bool§checks: Vec<PrecheckItem>Trait Implementations§
Source§impl Clone for PrecheckResult
impl Clone for PrecheckResult
Source§fn clone(&self) -> PrecheckResult
fn clone(&self) -> PrecheckResult
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 moreSource§impl Debug for PrecheckResult
impl Debug for PrecheckResult
Source§impl<'de> Deserialize<'de> for PrecheckResult
impl<'de> Deserialize<'de> for PrecheckResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PrecheckResult
impl RefUnwindSafe for PrecheckResult
impl Send for PrecheckResult
impl Sync for PrecheckResult
impl Unpin for PrecheckResult
impl UnsafeUnpin for PrecheckResult
impl UnwindSafe for PrecheckResult
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