pub struct RuntimePluginError {
pub message: String,
}Expand description
Error returned by plugin transaction execution.
Fields§
§message: StringHuman-readable error message.
Implementations§
Trait Implementations§
Source§impl Clone for RuntimePluginError
impl Clone for RuntimePluginError
Source§fn clone(&self) -> RuntimePluginError
fn clone(&self) -> RuntimePluginError
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 RuntimePluginError
impl Debug for RuntimePluginError
Source§impl Display for RuntimePluginError
impl Display for RuntimePluginError
Source§impl Error for RuntimePluginError
impl Error for RuntimePluginError
1.30.0 · 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 PartialEq for RuntimePluginError
impl PartialEq for RuntimePluginError
impl Eq for RuntimePluginError
impl StructuralPartialEq for RuntimePluginError
Auto Trait Implementations§
impl Freeze for RuntimePluginError
impl RefUnwindSafe for RuntimePluginError
impl Send for RuntimePluginError
impl Sync for RuntimePluginError
impl Unpin for RuntimePluginError
impl UnsafeUnpin for RuntimePluginError
impl UnwindSafe for RuntimePluginError
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