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
sourceimpl Clone for LegacySmartModuleError
impl Clone for LegacySmartModuleError
sourcefn clone(&self) -> LegacySmartModuleError
fn clone(&self) -> LegacySmartModuleError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for LegacySmartModuleError
impl Debug for LegacySmartModuleError
sourceimpl Decoder for LegacySmartModuleError
impl Decoder for LegacySmartModuleError
sourceimpl Default for LegacySmartModuleError
impl Default for LegacySmartModuleError
sourcefn default() -> LegacySmartModuleError
fn default() -> LegacySmartModuleError
Returns the “default value” for a type. Read more
sourceimpl Display for LegacySmartModuleError
impl Display for LegacySmartModuleError
sourceimpl Encoder for LegacySmartModuleError
impl Encoder for LegacySmartModuleError
sourceimpl Error for LegacySmartModuleError
impl Error for LegacySmartModuleError
sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<SmartModuleTransformRuntimeError> for LegacySmartModuleError
impl From<SmartModuleTransformRuntimeError> for LegacySmartModuleError
sourcefn from(source: SmartModuleTransformRuntimeError) -> LegacySmartModuleError
fn from(source: SmartModuleTransformRuntimeError) -> LegacySmartModuleError
Converts to this type from the input type.
sourceimpl PartialEq<LegacySmartModuleError> for LegacySmartModuleError
impl PartialEq<LegacySmartModuleError> for LegacySmartModuleError
sourcefn eq(&self, other: &LegacySmartModuleError) -> bool
fn eq(&self, other: &LegacySmartModuleError) -> bool
impl Eq for LegacySmartModuleError
impl StructuralEq for LegacySmartModuleError
impl StructuralPartialEq for LegacySmartModuleError
Auto Trait Implementations
impl RefUnwindSafe for LegacySmartModuleError
impl Send for LegacySmartModuleError
impl Sync for LegacySmartModuleError
impl Unpin for LegacySmartModuleError
impl UnwindSafe for LegacySmartModuleError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more