pub struct InspectModeCanceled {
pub method: InspectModeCanceledMethod,
pub params: InspectModeCanceledParams,
}Expand description
Fired when user cancels the inspect mode. inspectModeCanceled
Fields§
§method: InspectModeCanceledMethod§params: InspectModeCanceledParamsImplementations§
Source§impl InspectModeCanceled
impl InspectModeCanceled
pub const IDENTIFIER: &'static str = "Overlay.inspectModeCanceled"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for InspectModeCanceled
impl Clone for InspectModeCanceled
Source§fn clone(&self) -> InspectModeCanceled
fn clone(&self) -> InspectModeCanceled
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 InspectModeCanceled
impl Debug for InspectModeCanceled
Source§impl<'de> Deserialize<'de> for InspectModeCanceled
impl<'de> Deserialize<'de> for InspectModeCanceled
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<InspectModeCanceled> for BrowserProtocolEvents
impl From<InspectModeCanceled> for BrowserProtocolEvents
Source§fn from(v: InspectModeCanceled) -> Self
fn from(v: InspectModeCanceled) -> Self
Converts to this type from the input type.
Source§impl From<InspectModeCanceled> for Event
impl From<InspectModeCanceled> for Event
Source§fn from(v: InspectModeCanceled) -> Self
fn from(v: InspectModeCanceled) -> Self
Converts to this type from the input type.
Source§impl From<InspectModeCanceled> for OverlayEvents
impl From<InspectModeCanceled> for OverlayEvents
Source§fn from(v: InspectModeCanceled) -> Self
fn from(v: InspectModeCanceled) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InspectModeCanceled
impl PartialEq for InspectModeCanceled
Source§impl Serialize for InspectModeCanceled
impl Serialize for InspectModeCanceled
Source§impl TryFrom<BrowserProtocolEvents> for InspectModeCanceled
impl TryFrom<BrowserProtocolEvents> for InspectModeCanceled
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <InspectModeCanceled as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <InspectModeCanceled as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for InspectModeCanceled
impl TryFrom<Event> for InspectModeCanceled
Source§impl TryFrom<OverlayEvents> for InspectModeCanceled
impl TryFrom<OverlayEvents> for InspectModeCanceled
Source§type Error = OverlayEvents
type Error = OverlayEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: OverlayEvents,
) -> Result<Self, <InspectModeCanceled as TryFrom<OverlayEvents>>::Error>
fn try_from( e: OverlayEvents, ) -> Result<Self, <InspectModeCanceled as TryFrom<OverlayEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for InspectModeCanceled
Auto Trait Implementations§
impl Freeze for InspectModeCanceled
impl RefUnwindSafe for InspectModeCanceled
impl Send for InspectModeCanceled
impl Sync for InspectModeCanceled
impl Unpin for InspectModeCanceled
impl UnsafeUnpin for InspectModeCanceled
impl UnwindSafe for InspectModeCanceled
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