pub enum LegacySmartModuleError {
    Runtime(SmartModuleRuntimeError),
    InvalidWasmModule(String),
    InvalidDerivedStreamModule(String),
}Expand description
Deprecated. A type representing the possible errors that may occur during DerivedStream execution.
Variants§
Trait Implementations§
Source§impl Clone for LegacySmartModuleError
 
impl Clone for LegacySmartModuleError
Source§fn clone(&self) -> LegacySmartModuleError
 
fn clone(&self) -> LegacySmartModuleError
Returns a duplicate 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§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)>
Returns 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<LegacySmartModuleError> for ErrorCode
 
impl From<LegacySmartModuleError> for ErrorCode
Source§fn from(source: LegacySmartModuleError) -> Self
 
fn from(source: LegacySmartModuleError) -> Self
Converts to this type from the input type.
Source§impl From<SmartModuleRuntimeError> for LegacySmartModuleError
 
impl From<SmartModuleRuntimeError> for LegacySmartModuleError
Source§fn from(source: SmartModuleRuntimeError) -> Self
 
fn from(source: SmartModuleRuntimeError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LegacySmartModuleError
 
impl PartialEq for LegacySmartModuleError
impl StructuralPartialEq for LegacySmartModuleError
Auto Trait Implementations§
impl !Freeze for LegacySmartModuleError
impl RefUnwindSafe for LegacySmartModuleError
impl Send for LegacySmartModuleError
impl Sync for LegacySmartModuleError
impl Unpin for LegacySmartModuleError
impl UnwindSafe for LegacySmartModuleError
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