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.
Tuple Fields of FaaSError
0: FaaSErrorInterpreterResultDeError(String)AIR interpreter result deserialization errors.
Tuple Fields of InterpreterResultDeError
0: StringI/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
Trait Implementations
Performs the conversion.