pub struct PatchExecutionPlan {
pub checks: Vec<PlannedCheck>,
pub frozen: bool,
}Expand description
Frozen execution plan with classified checks.
Fields§
§checks: Vec<PlannedCheck>§frozen: boolImplementations§
Source§impl PatchExecutionPlan
impl PatchExecutionPlan
Sourcepub fn cargo_default() -> Self
pub fn cargo_default() -> Self
Create a default Cargo-based execution plan.
Sourcepub fn comparable_checks(&self) -> Vec<&PlannedCheck>
pub fn comparable_checks(&self) -> Vec<&PlannedCheck>
Get only ComparableCore checks.
Trait Implementations§
Source§impl Clone for PatchExecutionPlan
impl Clone for PatchExecutionPlan
Source§fn clone(&self) -> PatchExecutionPlan
fn clone(&self) -> PatchExecutionPlan
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 PatchExecutionPlan
impl Debug for PatchExecutionPlan
Source§impl<'de> Deserialize<'de> for PatchExecutionPlan
impl<'de> Deserialize<'de> for PatchExecutionPlan
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 PatchExecutionPlan
impl RefUnwindSafe for PatchExecutionPlan
impl Send for PatchExecutionPlan
impl Sync for PatchExecutionPlan
impl Unpin for PatchExecutionPlan
impl UnsafeUnpin for PatchExecutionPlan
impl UnwindSafe for PatchExecutionPlan
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