pub struct PipelineValidationReport {
pub phases: Vec<PhaseValidation>,
pub overall_passed: bool,
pub total_checks: usize,
pub passed_checks: usize,
pub summary: String,
}Expand description
Complete pipeline validation report
Fields§
§phases: Vec<PhaseValidation>Validation results for each phase
overall_passed: boolOverall validation status
total_checks: usizeTotal checks performed
passed_checks: usizeNumber of passed checks
summary: StringSummary message
Implementations§
Source§impl PipelineValidationReport
impl PipelineValidationReport
Sourcepub fn from_phases(phases: Vec<PhaseValidation>) -> Self
pub fn from_phases(phases: Vec<PhaseValidation>) -> Self
Create a report from phase validations
Sourcepub fn detailed_report(&self) -> String
pub fn detailed_report(&self) -> String
Generate a detailed report string
Sourcepub fn all_warnings(&self) -> Vec<String>
pub fn all_warnings(&self) -> Vec<String>
Get all warnings across all phases
Sourcepub fn failed_phases(&self) -> Vec<&PhaseValidation>
pub fn failed_phases(&self) -> Vec<&PhaseValidation>
Get failed phases
Trait Implementations§
Source§impl Clone for PipelineValidationReport
impl Clone for PipelineValidationReport
Source§fn clone(&self) -> PipelineValidationReport
fn clone(&self) -> PipelineValidationReport
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 PipelineValidationReport
impl Debug for PipelineValidationReport
Source§impl<'de> Deserialize<'de> for PipelineValidationReport
impl<'de> Deserialize<'de> for PipelineValidationReport
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 PipelineValidationReport
impl RefUnwindSafe for PipelineValidationReport
impl Send for PipelineValidationReport
impl Sync for PipelineValidationReport
impl Unpin for PipelineValidationReport
impl UnsafeUnpin for PipelineValidationReport
impl UnwindSafe for PipelineValidationReport
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more