pub enum ValidPayload<'a> {
Ok,
Parser(Parser),
Func(FuncToValidate<ValidatorResources>, FunctionBody<'a>),
End(Types),
}
Expand description
Possible return values from Validator::payload
.
Variants§
Ok
The payload validated, no further action need be taken.
Parser(Parser)
The payload validated, but it started a nested module or component.
This result indicates that the specified parser should be used instead of the currently-used parser until this returned one ends.
Func(FuncToValidate<ValidatorResources>, FunctionBody<'a>)
A function was found to be validate.
End(Types)
The end payload was validated and the types known to the validator are provided.
Auto Trait Implementations§
impl<'a> Freeze for ValidPayload<'a>
impl<'a> RefUnwindSafe for ValidPayload<'a>
impl<'a> Send for ValidPayload<'a>
impl<'a> Sync for ValidPayload<'a>
impl<'a> Unpin for ValidPayload<'a>
impl<'a> UnwindSafe for ValidPayload<'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