pub struct EventInspectPanelShowRequested {
pub backend_node_id: BackendNodeId,
}Expand description
Fired when user asks to show the Inspect panel. inspectPanelShowRequested
Fields§
§backend_node_id: BackendNodeIdId of the node to show in the panel.
Implementations§
Source§impl EventInspectPanelShowRequested
impl EventInspectPanelShowRequested
pub const IDENTIFIER: &'static str = "Overlay.inspectPanelShowRequested"
Trait Implementations§
Source§impl Clone for EventInspectPanelShowRequested
impl Clone for EventInspectPanelShowRequested
Source§fn clone(&self) -> EventInspectPanelShowRequested
fn clone(&self) -> EventInspectPanelShowRequested
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<'de> Deserialize<'de> for EventInspectPanelShowRequested
impl<'de> Deserialize<'de> for EventInspectPanelShowRequested
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EventInspectPanelShowRequested, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EventInspectPanelShowRequested, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<EventInspectPanelShowRequested> for CdpEvent
impl From<EventInspectPanelShowRequested> for CdpEvent
Source§fn from(el: EventInspectPanelShowRequested) -> CdpEvent
fn from(el: EventInspectPanelShowRequested) -> CdpEvent
Converts to this type from the input type.
Source§impl IntoEventKind for EventInspectPanelShowRequested
impl IntoEventKind for EventInspectPanelShowRequested
Source§fn event_kind() -> EventKindwhere
EventInspectPanelShowRequested: Sized + 'static,
fn event_kind() -> EventKindwhere
EventInspectPanelShowRequested: Sized + 'static,
What kind of event this type is
Source§impl Method for EventInspectPanelShowRequested
impl Method for EventInspectPanelShowRequested
Source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl PartialEq for EventInspectPanelShowRequested
impl PartialEq for EventInspectPanelShowRequested
Source§fn eq(&self, other: &EventInspectPanelShowRequested) -> bool
fn eq(&self, other: &EventInspectPanelShowRequested) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EventInspectPanelShowRequested
impl Serialize for EventInspectPanelShowRequested
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for EventInspectPanelShowRequested
Auto Trait Implementations§
impl Freeze for EventInspectPanelShowRequested
impl RefUnwindSafe for EventInspectPanelShowRequested
impl Send for EventInspectPanelShowRequested
impl Sync for EventInspectPanelShowRequested
impl Unpin for EventInspectPanelShowRequested
impl UnsafeUnpin for EventInspectPanelShowRequested
impl UnwindSafe for EventInspectPanelShowRequested
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