pub struct ExceptionRevoked {
pub method: ExceptionRevokedMethod,
pub params: ExceptionRevokedParams,
}Expand description
Issued when unhandled exception was revoked. exceptionRevoked
Fields§
§method: ExceptionRevokedMethod§params: ExceptionRevokedParamsImplementations§
Source§impl ExceptionRevoked
impl ExceptionRevoked
pub const IDENTIFIER: &'static str = "Runtime.exceptionRevoked"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ExceptionRevoked
impl Clone for ExceptionRevoked
Source§fn clone(&self) -> ExceptionRevoked
fn clone(&self) -> ExceptionRevoked
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 ExceptionRevoked
impl Debug for ExceptionRevoked
Source§impl<'de> Deserialize<'de> for ExceptionRevoked
impl<'de> Deserialize<'de> for ExceptionRevoked
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 From<ExceptionRevoked> for Event
impl From<ExceptionRevoked> for Event
Source§fn from(v: ExceptionRevoked) -> Self
fn from(v: ExceptionRevoked) -> Self
Converts to this type from the input type.
Source§impl From<ExceptionRevoked> for JsProtocolEvents
impl From<ExceptionRevoked> for JsProtocolEvents
Source§fn from(v: ExceptionRevoked) -> Self
fn from(v: ExceptionRevoked) -> Self
Converts to this type from the input type.
Source§impl From<ExceptionRevoked> for RuntimeEvents
impl From<ExceptionRevoked> for RuntimeEvents
Source§fn from(v: ExceptionRevoked) -> Self
fn from(v: ExceptionRevoked) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExceptionRevoked
impl PartialEq for ExceptionRevoked
Source§impl Serialize for ExceptionRevoked
impl Serialize for ExceptionRevoked
Source§impl TryFrom<Event> for ExceptionRevoked
impl TryFrom<Event> for ExceptionRevoked
Source§impl TryFrom<JsProtocolEvents> for ExceptionRevoked
impl TryFrom<JsProtocolEvents> for ExceptionRevoked
Source§type Error = JsProtocolEvents
type Error = JsProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolEvents,
) -> Result<Self, <ExceptionRevoked as TryFrom<JsProtocolEvents>>::Error>
fn try_from( e: JsProtocolEvents, ) -> Result<Self, <ExceptionRevoked as TryFrom<JsProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<RuntimeEvents> for ExceptionRevoked
impl TryFrom<RuntimeEvents> for ExceptionRevoked
Source§type Error = RuntimeEvents
type Error = RuntimeEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: RuntimeEvents,
) -> Result<Self, <ExceptionRevoked as TryFrom<RuntimeEvents>>::Error>
fn try_from( e: RuntimeEvents, ) -> Result<Self, <ExceptionRevoked as TryFrom<RuntimeEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for ExceptionRevoked
Auto Trait Implementations§
impl Freeze for ExceptionRevoked
impl RefUnwindSafe for ExceptionRevoked
impl Send for ExceptionRevoked
impl Sync for ExceptionRevoked
impl Unpin for ExceptionRevoked
impl UnsafeUnpin for ExceptionRevoked
impl UnwindSafe for ExceptionRevoked
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