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