Enum avm_server::AVMError [−][src]
pub enum AVMError {
FaaSError(FaaSError),
InterpreterResultDeError(String),
PersistDataError(IOError, PathBuf),
InvalidDataStorePath(IOError, PathBuf),
CreateVaultDirError(IOError, PathBuf),
CleanupParticleError(IOError, PathBuf),
InvalidAIRPath {
invalid_path: PathBuf,
io_error: Option<IOError>,
reason: &'static str,
},
}Variants
FaaSError(FaaSError)FaaS errors.
InterpreterResultDeError(String)AIR interpreter result deserialization errors.
I/O errors while persisting resulted data.
Errors related to particle_data_store path from supplied config.
Failed to create Particle File Vault directory (thrown inside Effect)
Failed to remove particle directories (called by node after particle’s ttl is expired)
Specified path to AIR interpreter .wasm file was invalid
Show fields
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for AVMErrorimpl !UnwindSafe for AVMError