pub enum LegacySmartModuleError {
Runtime(SmartModuleTransformRuntimeError),
InvalidWasmModule(String),
InvalidDerivedStreamModule(String),
}Expand description
Deprecated. A type representing the possible errors that may occur during DerivedStream execution.
Variants§
Runtime(SmartModuleTransformRuntimeError)
InvalidWasmModule(String)
InvalidDerivedStreamModule(String)
Trait Implementations§
source§impl Clone for LegacySmartModuleError
impl Clone for LegacySmartModuleError
source§fn clone(&self) -> LegacySmartModuleError
fn clone(&self) -> LegacySmartModuleError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for LegacySmartModuleError
impl Debug for LegacySmartModuleError
source§impl Decoder for LegacySmartModuleError
impl Decoder for LegacySmartModuleError
source§impl Default for LegacySmartModuleError
impl Default for LegacySmartModuleError
source§fn default() -> LegacySmartModuleError
fn default() -> LegacySmartModuleError
Returns the “default value” for a type. Read more
source§impl Display for LegacySmartModuleError
impl Display for LegacySmartModuleError
source§impl Encoder for LegacySmartModuleError
impl Encoder for LegacySmartModuleError
source§impl Error for LegacySmartModuleError
impl Error for LegacySmartModuleError
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<SmartModuleTransformRuntimeError> for LegacySmartModuleError
impl From<SmartModuleTransformRuntimeError> for LegacySmartModuleError
source§fn from(source: SmartModuleTransformRuntimeError) -> LegacySmartModuleError
fn from(source: SmartModuleTransformRuntimeError) -> LegacySmartModuleError
Converts to this type from the input type.
source§impl PartialEq<LegacySmartModuleError> for LegacySmartModuleError
impl PartialEq<LegacySmartModuleError> for LegacySmartModuleError
source§fn eq(&self, other: &LegacySmartModuleError) -> bool
fn eq(&self, other: &LegacySmartModuleError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.