pub struct ExceptionRevokedParams {
pub reason: String,
pub exception_id: i64,
}Expand description
Issued when unhandled exception was revoked. exceptionRevoked
Fields§
§reason: StringReason describing why exception was revoked.
exception_id: i64The id of revoked exception, as reported in exceptionThrown.
Trait Implementations§
Source§impl Clone for ExceptionRevokedParams
impl Clone for ExceptionRevokedParams
Source§fn clone(&self) -> ExceptionRevokedParams
fn clone(&self) -> ExceptionRevokedParams
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 ExceptionRevokedParams
impl Debug for ExceptionRevokedParams
Source§impl<'de> Deserialize<'de> for ExceptionRevokedParams
impl<'de> Deserialize<'de> for ExceptionRevokedParams
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
Source§impl PartialEq for ExceptionRevokedParams
impl PartialEq for ExceptionRevokedParams
Source§impl Serialize for ExceptionRevokedParams
impl Serialize for ExceptionRevokedParams
impl StructuralPartialEq for ExceptionRevokedParams
Auto Trait Implementations§
impl Freeze for ExceptionRevokedParams
impl RefUnwindSafe for ExceptionRevokedParams
impl Send for ExceptionRevokedParams
impl Sync for ExceptionRevokedParams
impl Unpin for ExceptionRevokedParams
impl UnsafeUnpin for ExceptionRevokedParams
impl UnwindSafe for ExceptionRevokedParams
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