pub struct DataFlowValidator<T> { /* private fields */ }Expand description
Compile-time data flow validation
Implementations§
Source§impl<T> DataFlowValidator<T>
impl<T> DataFlowValidator<T>
Trait Implementations§
Source§impl DataFlowValidation for DataFlowValidator<CategoricalInput>
impl DataFlowValidation for DataFlowValidator<CategoricalInput>
Source§fn validate_flow(&self) -> Result<(), PipelineValidationError>
fn validate_flow(&self) -> Result<(), PipelineValidationError>
Validate that data can flow through all stages
Source§impl DataFlowValidation for DataFlowValidator<NumericInput>
impl DataFlowValidation for DataFlowValidator<NumericInput>
Source§fn validate_flow(&self) -> Result<(), PipelineValidationError>
fn validate_flow(&self) -> Result<(), PipelineValidationError>
Validate that data can flow through all stages
Auto Trait Implementations§
impl<T> Freeze for DataFlowValidator<T>
impl<T> RefUnwindSafe for DataFlowValidator<T>where
T: RefUnwindSafe,
impl<T> Send for DataFlowValidator<T>where
T: Send,
impl<T> Sync for DataFlowValidator<T>where
T: Sync,
impl<T> Unpin for DataFlowValidator<T>where
T: Unpin,
impl<T> UnwindSafe for DataFlowValidator<T>where
T: UnwindSafe,
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> 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