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 for ValidationError
impl PartialEq 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 ==
.impl StructuralPartialEq for ValidationError
Auto Trait Implementations§
impl RefUnwindSafe for ValidationError
impl Send for ValidationError
impl Sync for ValidationError
impl Unpin for ValidationError
impl UnwindSafe for ValidationError
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