Enum greenwasm_validation::ValidationErrorEnum[][src]

pub enum ValidationErrorEnum {
    LimitMaxSmallerMin,
    FunctionTypeResultArityGreaterOne,
    InstrSetGlobalNotVar,
    InstrLoadOveraligned,
    InstrStoreOveraligned,
    InstrBrTableNotSameLabelType,
    InstrCallIndirectElemTypeNotAnyFunc,
    InstrWithTypeNotValid,
    ConstExprGetGlobalNotConst,
    ConstExprIlligalInstruction,
    ElemElemTypeNotAnyFunc,
    ModulePrepassImportFuncTypeIdxDoesNotExist,
    ModuleTablesLengthNotOne,
    ModuleMemsLengthNotOne,
    ModuleExportDuplicateName,
    CtxLocalsIdxDoesNotExist,
    CtxGlobalsIdxDoesNotExist,
    CtxMemsIdxDoesNotExist,
    CtxFuncsIdxDoesNotExist,
    CtxTablesIdxDoesNotExist,
    CtxTypesIdxDoesNotExist,
    CtxLabelsIdxDoesNotExist,
    CtxReturnDoesNotExist,
    StartFunNotValidWithEmptyEmpty,
    MemoryBoundsOutside32Bit,
}

Variants

Trait Implementations

impl Debug for ValidationErrorEnum
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations