Enum wasmer_toml::ValidationError 
source · #[non_exhaustive]
pub enum ValidationError {
    MissingABI {
        command: String,
        module: String,
    },
    MissingModuleForCommand {
        command: String,
        module: ModuleReference,
    },
    MissingDependency {
        command: String,
        dependency: String,
        module_ref: ModuleReference,
    },
    InvalidEntrypoint {
        entrypoint: String,
        available_commands: Vec<String>,
    },
    DuplicateModule {
        name: String,
    },
    DuplicateCommand {
        name: String,
    },
}Expand description
Errors that may be returned by Manifest::validate().
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MissingABI
MissingModuleForCommand
MissingDependency
InvalidEntrypoint
DuplicateModule
DuplicateCommand
Trait Implementations§
source§impl Debug for ValidationError
 
impl Debug for ValidationError
source§impl Display for ValidationError
 
impl Display for ValidationError
source§impl Error for ValidationError
 
impl Error for ValidationError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<ValidationError> for ManifestError
 
impl From<ValidationError> for ManifestError
source§fn from(source: ValidationError) -> Self
 
fn from(source: ValidationError) -> Self
Converts to this type from the input type.
source§impl PartialEq<ValidationError> for ValidationError
 
impl PartialEq<ValidationError> for ValidationError
source§fn eq(&self, other: &ValidationError) -> bool
 
fn eq(&self, other: &ValidationError) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.