pub enum PipelineValidationError {
IncompatibleTypes {
stage_index: usize,
expected: String,
found: String,
},
MissingStage {
stage_name: String,
},
InvalidConfiguration {
stage_index: usize,
reason: String,
},
}Expand description
Error type for pipeline validation
Variants§
IncompatibleTypes
Incompatible input/output types between stages
MissingStage
Missing required stage
InvalidConfiguration
Invalid stage configuration
Trait Implementations§
Source§impl Clone for PipelineValidationError
impl Clone for PipelineValidationError
Source§fn clone(&self) -> PipelineValidationError
fn clone(&self) -> PipelineValidationError
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 PipelineValidationError
impl Debug for PipelineValidationError
Source§impl Display for PipelineValidationError
impl Display for PipelineValidationError
Source§impl Error for PipelineValidationError
impl Error for PipelineValidationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for PipelineValidationError
impl PartialEq for PipelineValidationError
impl StructuralPartialEq for PipelineValidationError
Auto Trait Implementations§
impl Freeze for PipelineValidationError
impl RefUnwindSafe for PipelineValidationError
impl Send for PipelineValidationError
impl Sync for PipelineValidationError
impl Unpin for PipelineValidationError
impl UnwindSafe for PipelineValidationError
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> 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