Enum wasmparser::ValidPayload [−][src]
pub enum ValidPayload<'a> { Ok, Push(Parser, Validator), Pop, Func(FuncValidator<ValidatorResources>, FunctionBody<'a>), }
Possible return values from Validator::payload
.
Variants
The payload validated, no further action need be taken.
The payload validated, but it started a nested module.
This result indicates that the current validator needs to be saved until later. The returned parser and validator should be used instead.
The payload validated, and the current validator is finished. The last validator that was in use should be popped off the stack to resume.
Func(FuncValidator<ValidatorResources>, FunctionBody<'a>)
A function was found to be validate.