pub struct HighlightSourceOrderCommand { /* private fields */ }Available on crate features
experimental and Overlay and DOM and Page and Runtime only.Expand description
Highlights the source order of the children of the DOM node with given id or with the given JavaScript object wrapper. Either nodeId or objectId must be specified.
Implementations§
Source§impl HighlightSourceOrderCommand
impl HighlightSourceOrderCommand
pub fn builder() -> HighlightSourceOrderCommandBuilder
Sourcepub fn source_order_config(&self) -> &SourceOrderConfig
pub fn source_order_config(&self) -> &SourceOrderConfig
A descriptor for the appearance of the overlay drawing.
Sourcepub fn backend_node_id(&self) -> Option<&BackendNodeId>
pub fn backend_node_id(&self) -> Option<&BackendNodeId>
Identifier of the backend node to highlight.
Sourcepub fn object_id(&self) -> Option<&RemoteObjectId>
pub fn object_id(&self) -> Option<&RemoteObjectId>
JavaScript object id of the node to be highlighted.
Trait Implementations§
Source§impl Clone for HighlightSourceOrderCommand
impl Clone for HighlightSourceOrderCommand
Source§fn clone(&self) -> HighlightSourceOrderCommand
fn clone(&self) -> HighlightSourceOrderCommand
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 HighlightSourceOrderCommand
impl Debug for HighlightSourceOrderCommand
Source§impl<'de> Deserialize<'de> for HighlightSourceOrderCommand
impl<'de> Deserialize<'de> for HighlightSourceOrderCommand
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
Auto Trait Implementations§
impl Freeze for HighlightSourceOrderCommand
impl RefUnwindSafe for HighlightSourceOrderCommand
impl Send for HighlightSourceOrderCommand
impl Sync for HighlightSourceOrderCommand
impl Unpin for HighlightSourceOrderCommand
impl UnwindSafe for HighlightSourceOrderCommand
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