Enum wasmtime_environ::wasmparser::ValidPayload
source · pub enum ValidPayload<'a> {
Ok,
Parser(Parser),
Func(FuncValidator<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(FuncValidator<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> 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