pub struct PlanValidation {
pub is_valid: bool,
pub errors: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Validation result for a generation plan
Fields§
§is_valid: boolWhether the plan is valid
errors: Vec<String>Validation errors
warnings: Vec<String>Validation warnings
Trait Implementations§
Source§impl Clone for PlanValidation
impl Clone for PlanValidation
Source§fn clone(&self) -> PlanValidation
fn clone(&self) -> PlanValidation
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 moreAuto Trait Implementations§
impl Freeze for PlanValidation
impl RefUnwindSafe for PlanValidation
impl Send for PlanValidation
impl Sync for PlanValidation
impl Unpin for PlanValidation
impl UnwindSafe for PlanValidation
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