pub struct GetContentQuadsParams {
pub nodeId: Option<NodeId>,
pub backendNodeId: Option<BackendNodeId>,
pub objectId: Option<RemoteObjectId>,
}Expand description
Returns quads that describe node position on the page. This method might return multiple quads for inline nodes.
Fields§
§nodeId: Option<NodeId>Identifier of the node.
backendNodeId: Option<BackendNodeId>Identifier of the backend node.
objectId: Option<RemoteObjectId>JavaScript object id of the node wrapper.
Trait Implementations§
Source§impl Clone for GetContentQuadsParams
impl Clone for GetContentQuadsParams
Source§fn clone(&self) -> GetContentQuadsParams
fn clone(&self) -> GetContentQuadsParams
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 GetContentQuadsParams
impl Debug for GetContentQuadsParams
Source§impl Default for GetContentQuadsParams
impl Default for GetContentQuadsParams
Source§fn default() -> GetContentQuadsParams
fn default() -> GetContentQuadsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetContentQuadsParams
impl<'de> Deserialize<'de> for GetContentQuadsParams
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 GetContentQuadsParams
impl RefUnwindSafe for GetContentQuadsParams
impl Send for GetContentQuadsParams
impl Sync for GetContentQuadsParams
impl Unpin for GetContentQuadsParams
impl UnsafeUnpin for GetContentQuadsParams
impl UnwindSafe for GetContentQuadsParams
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