pub struct CmakeCheckRecord {
pub check_id: String,
pub check_kind: String,
pub status: CmakeCheckStatus,
pub ok: Option<Value>,
pub fail: Option<CmakeCheckFail>,
}Fields§
§check_id: String§check_kind: String§status: CmakeCheckStatus§ok: Option<Value>§fail: Option<CmakeCheckFail>Trait Implementations§
Source§impl Clone for CmakeCheckRecord
impl Clone for CmakeCheckRecord
Source§fn clone(&self) -> CmakeCheckRecord
fn clone(&self) -> CmakeCheckRecord
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 CmakeCheckRecord
impl Debug for CmakeCheckRecord
Source§impl<'de> Deserialize<'de> for CmakeCheckRecord
impl<'de> Deserialize<'de> for CmakeCheckRecord
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
Source§impl PartialEq for CmakeCheckRecord
impl PartialEq for CmakeCheckRecord
Source§impl Serialize for CmakeCheckRecord
impl Serialize for CmakeCheckRecord
impl Eq for CmakeCheckRecord
impl StructuralPartialEq for CmakeCheckRecord
Auto Trait Implementations§
impl Freeze for CmakeCheckRecord
impl RefUnwindSafe for CmakeCheckRecord
impl Send for CmakeCheckRecord
impl Sync for CmakeCheckRecord
impl Unpin for CmakeCheckRecord
impl UnsafeUnpin for CmakeCheckRecord
impl UnwindSafe for CmakeCheckRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.