pub struct InspectNodeRequested {
pub method: InspectNodeRequestedMethod,
pub params: InspectNodeRequestedParams,
}Expand description
Fired when the node should be inspected. This happens after call to setInspectMode or when
user manually inspects an element.
inspectNodeRequested
Fields§
§method: InspectNodeRequestedMethod§params: InspectNodeRequestedParamsImplementations§
Source§impl InspectNodeRequested
impl InspectNodeRequested
pub const IDENTIFIER: &'static str = "Overlay.inspectNodeRequested"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for InspectNodeRequested
impl Clone for InspectNodeRequested
Source§fn clone(&self) -> InspectNodeRequested
fn clone(&self) -> InspectNodeRequested
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 InspectNodeRequested
impl Debug for InspectNodeRequested
Source§impl<'de> Deserialize<'de> for InspectNodeRequested
impl<'de> Deserialize<'de> for InspectNodeRequested
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<InspectNodeRequested> for BrowserProtocolEvents
impl From<InspectNodeRequested> for BrowserProtocolEvents
Source§fn from(v: InspectNodeRequested) -> Self
fn from(v: InspectNodeRequested) -> Self
Converts to this type from the input type.
Source§impl From<InspectNodeRequested> for Event
impl From<InspectNodeRequested> for Event
Source§fn from(v: InspectNodeRequested) -> Self
fn from(v: InspectNodeRequested) -> Self
Converts to this type from the input type.
Source§impl From<InspectNodeRequested> for OverlayEvents
impl From<InspectNodeRequested> for OverlayEvents
Source§fn from(v: InspectNodeRequested) -> Self
fn from(v: InspectNodeRequested) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InspectNodeRequested
impl PartialEq for InspectNodeRequested
Source§impl Serialize for InspectNodeRequested
impl Serialize for InspectNodeRequested
Source§impl TryFrom<BrowserProtocolEvents> for InspectNodeRequested
impl TryFrom<BrowserProtocolEvents> for InspectNodeRequested
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, <InspectNodeRequested as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <InspectNodeRequested as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for InspectNodeRequested
impl TryFrom<Event> for InspectNodeRequested
Source§impl TryFrom<OverlayEvents> for InspectNodeRequested
impl TryFrom<OverlayEvents> for InspectNodeRequested
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, <InspectNodeRequested as TryFrom<OverlayEvents>>::Error>
fn try_from( e: OverlayEvents, ) -> Result<Self, <InspectNodeRequested as TryFrom<OverlayEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for InspectNodeRequested
Auto Trait Implementations§
impl Freeze for InspectNodeRequested
impl RefUnwindSafe for InspectNodeRequested
impl Send for InspectNodeRequested
impl Sync for InspectNodeRequested
impl Unpin for InspectNodeRequested
impl UnsafeUnpin for InspectNodeRequested
impl UnwindSafe for InspectNodeRequested
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