pub struct ValidationContext<'a> {
pub config: &'a V2WALConfig,
pub validation_config: ValidationConfig,
pub checkpoint_path: &'a Path,
pub rule_engine: &'a ValidationRuleEngine,
}Expand description
Validation context for rule execution
Fields§
§config: &'a V2WALConfigCheckpoint configuration
validation_config: ValidationConfigValidation configuration
checkpoint_path: &'a PathCheckpoint file path
rule_engine: &'a ValidationRuleEngineValidation rule engine
Implementations§
Source§impl<'a> ValidationContext<'a>
impl<'a> ValidationContext<'a>
Sourcepub fn new(
config: &'a V2WALConfig,
checkpoint_path: &'a Path,
rule_engine: &'a ValidationRuleEngine,
) -> Self
pub fn new( config: &'a V2WALConfig, checkpoint_path: &'a Path, rule_engine: &'a ValidationRuleEngine, ) -> Self
Create a new validation context
Sourcepub fn with_validation_config(
config: &'a V2WALConfig,
checkpoint_path: &'a Path,
rule_engine: &'a ValidationRuleEngine,
validation_config: ValidationConfig,
) -> Self
pub fn with_validation_config( config: &'a V2WALConfig, checkpoint_path: &'a Path, rule_engine: &'a ValidationRuleEngine, validation_config: ValidationConfig, ) -> Self
Create validation context with custom validation config
Sourcepub fn should_execute_rule(&self, rule: &ValidationRule) -> bool
pub fn should_execute_rule(&self, rule: &ValidationRule) -> bool
Check if a rule should be executed based on configuration
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ValidationContext<'a>
impl<'a> RefUnwindSafe for ValidationContext<'a>
impl<'a> Send for ValidationContext<'a>
impl<'a> Sync for ValidationContext<'a>
impl<'a> Unpin for ValidationContext<'a>
impl<'a> UnwindSafe for ValidationContext<'a>
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