pub struct GetContentQuadsCommand { /* private fields */ }Available on crate features
DOM and Runtime and experimental only.Expand description
Returns quads that describe node position on the page. This method might return multiple quads for inline nodes.
Implementations§
Source§impl GetContentQuadsCommand
impl GetContentQuadsCommand
pub fn new( node_id: Option<NodeId>, backend_node_id: Option<BackendNodeId>, object_id: Option<RemoteObjectId>, ) -> Self
Sourcepub fn backend_node_id(&self) -> Option<&BackendNodeId>
pub fn backend_node_id(&self) -> Option<&BackendNodeId>
Identifier of the backend node.
Sourcepub fn object_id(&self) -> Option<&RemoteObjectId>
pub fn object_id(&self) -> Option<&RemoteObjectId>
JavaScript object id of the node wrapper.
Trait Implementations§
Source§impl Clone for GetContentQuadsCommand
impl Clone for GetContentQuadsCommand
Source§fn clone(&self) -> GetContentQuadsCommand
fn clone(&self) -> GetContentQuadsCommand
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 Command for GetContentQuadsCommand
impl Command for GetContentQuadsCommand
Source§impl Debug for GetContentQuadsCommand
impl Debug for GetContentQuadsCommand
Source§impl<'de> Deserialize<'de> for GetContentQuadsCommand
impl<'de> Deserialize<'de> for GetContentQuadsCommand
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 GetContentQuadsCommand
impl RefUnwindSafe for GetContentQuadsCommand
impl Send for GetContentQuadsCommand
impl Sync for GetContentQuadsCommand
impl Unpin for GetContentQuadsCommand
impl UnwindSafe for GetContentQuadsCommand
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