pub struct PlanValidationResult {
pub has_artifacts: bool,
pub artifact_count: usize,
pub described_count: usize,
pub notes: Vec<String>,
}Expand description
Result of plan validation — checking if completed work matches plan expectations.
Fields§
§has_artifacts: boolWhether the draft has content (at least one artifact).
artifact_count: usizeNumber of artifacts in the draft.
described_count: usizeNumber of artifacts with descriptions (what/rationale populated).
notes: Vec<String>Informational messages about plan alignment.
Implementations§
Source§impl PlanValidationResult
impl PlanValidationResult
Sourcepub fn is_well_described(&self) -> bool
pub fn is_well_described(&self) -> bool
Check if the draft has enough described artifacts to be considered complete.
Trait Implementations§
Source§impl Clone for PlanValidationResult
impl Clone for PlanValidationResult
Source§fn clone(&self) -> PlanValidationResult
fn clone(&self) -> PlanValidationResult
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 PlanValidationResult
impl Debug for PlanValidationResult
Source§impl PartialEq for PlanValidationResult
impl PartialEq for PlanValidationResult
impl Eq for PlanValidationResult
impl StructuralPartialEq for PlanValidationResult
Auto Trait Implementations§
impl Freeze for PlanValidationResult
impl RefUnwindSafe for PlanValidationResult
impl Send for PlanValidationResult
impl Sync for PlanValidationResult
impl Unpin for PlanValidationResult
impl UnsafeUnpin for PlanValidationResult
impl UnwindSafe for PlanValidationResult
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.