pub struct PlanValidationReport {
pub plan_id: String,
pub step_count: usize,
pub all_ok: bool,
pub steps: Vec<StepValidation>,
}Fields§
§plan_id: String§step_count: usize§all_ok: bool§steps: Vec<StepValidation>Trait Implementations§
Source§impl Clone for PlanValidationReport
impl Clone for PlanValidationReport
Source§fn clone(&self) -> PlanValidationReport
fn clone(&self) -> PlanValidationReport
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 PlanValidationReport
impl Debug for PlanValidationReport
Auto Trait Implementations§
impl Freeze for PlanValidationReport
impl RefUnwindSafe for PlanValidationReport
impl Send for PlanValidationReport
impl Sync for PlanValidationReport
impl Unpin for PlanValidationReport
impl UnsafeUnpin for PlanValidationReport
impl UnwindSafe for PlanValidationReport
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