pub struct ValidationContext<'a> {
pub current_item: &'a ContentItem,
pub all_items: &'a HashMap<String, ContentItem>,
pub config: &'a ValidationConfig,
pub variables: HashMap<String, FieldValue>,
}Expand description
Context for validation operations
Fields§
§current_item: &'a ContentItemThe item being validated
all_items: &'a HashMap<String, ContentItem>All content items in the project
config: &'a ValidationConfigGlobal configuration values
variables: HashMap<String, FieldValue>Additional context variables
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