pub struct HookEndError {
pub message: String,
pub stack: Option<String>,
}Expand description
Error details when the hook failed
Fields§
§message: StringHuman-readable error message
stack: Option<String>Error stack trace, when available
Trait Implementations§
Source§impl Clone for HookEndError
impl Clone for HookEndError
Source§fn clone(&self) -> HookEndError
fn clone(&self) -> HookEndError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HookEndError
impl Debug for HookEndError
Source§impl<'de> Deserialize<'de> for HookEndError
impl<'de> Deserialize<'de> for HookEndError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HookEndError
impl RefUnwindSafe for HookEndError
impl Send for HookEndError
impl Sync for HookEndError
impl Unpin for HookEndError
impl UnsafeUnpin for HookEndError
impl UnwindSafe for HookEndError
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