pub struct PlannedCheck {
pub check_kind: CheckKind,
pub comparability: ComparabilityClass,
pub config_override: bool,
}Expand description
A classified check in an execution plan.
Fields§
§check_kind: CheckKind§comparability: ComparabilityClass§config_override: boolOverride from task fixture config, if any.
Trait Implementations§
Source§impl Clone for PlannedCheck
impl Clone for PlannedCheck
Source§fn clone(&self) -> PlannedCheck
fn clone(&self) -> PlannedCheck
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 PlannedCheck
impl Debug for PlannedCheck
Source§impl<'de> Deserialize<'de> for PlannedCheck
impl<'de> Deserialize<'de> for PlannedCheck
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 PlannedCheck
impl RefUnwindSafe for PlannedCheck
impl Send for PlannedCheck
impl Sync for PlannedCheck
impl Unpin for PlannedCheck
impl UnsafeUnpin for PlannedCheck
impl UnwindSafe for PlannedCheck
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