pub struct GetPartialAXTreeParams {
pub nodeId: Option<NodeId>,
pub backendNodeId: Option<BackendNodeId>,
pub objectId: Option<RemoteObjectId>,
pub fetchRelatives: Option<bool>,
}Expand description
Fetches the accessibility node and partial accessibility tree for this DOM node, if it exists.
Fields§
§nodeId: Option<NodeId>Identifier of the node to get the partial accessibility tree for.
backendNodeId: Option<BackendNodeId>Identifier of the backend node to get the partial accessibility tree for.
objectId: Option<RemoteObjectId>JavaScript object id of the node wrapper to get the partial accessibility tree for.
fetchRelatives: Option<bool>Whether to fetch this node’s ancestors, siblings and children. Defaults to true.
Implementations§
Trait Implementations§
Source§impl CdpCommand for GetPartialAXTreeParams
impl CdpCommand for GetPartialAXTreeParams
Source§impl Clone for GetPartialAXTreeParams
impl Clone for GetPartialAXTreeParams
Source§fn clone(&self) -> GetPartialAXTreeParams
fn clone(&self) -> GetPartialAXTreeParams
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 GetPartialAXTreeParams
impl Debug for GetPartialAXTreeParams
Source§impl Default for GetPartialAXTreeParams
impl Default for GetPartialAXTreeParams
Source§fn default() -> GetPartialAXTreeParams
fn default() -> GetPartialAXTreeParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPartialAXTreeParams
impl<'de> Deserialize<'de> for GetPartialAXTreeParams
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 GetPartialAXTreeParams
impl RefUnwindSafe for GetPartialAXTreeParams
impl Send for GetPartialAXTreeParams
impl Sync for GetPartialAXTreeParams
impl Unpin for GetPartialAXTreeParams
impl UnsafeUnpin for GetPartialAXTreeParams
impl UnwindSafe for GetPartialAXTreeParams
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