pub struct GetPartialAxTreeCommand { /* private fields */ }Available on crate features
experimental and Accessibility and DOM only.Expand description
Fetches the accessibility node and partial accessibility tree for this DOM node, if it exists.
Implementations§
Source§impl GetPartialAxTreeCommand
impl GetPartialAxTreeCommand
pub fn builder() -> GetPartialAxTreeCommandBuilder
Sourcepub fn node_id(&self) -> Option<&NodeId>
pub fn node_id(&self) -> Option<&NodeId>
Identifier of the node to get the partial accessibility tree for.
Sourcepub fn backend_node_id(&self) -> Option<&BackendNodeId>
pub fn backend_node_id(&self) -> Option<&BackendNodeId>
Identifier of the backend node to get the partial accessibility tree for.
Sourcepub fn object_id(&self) -> Option<&RemoteObjectId>
pub fn object_id(&self) -> Option<&RemoteObjectId>
JavaScript object id of the node wrapper to get the partial accessibility tree for.
Sourcepub fn fetch_relatives(&self) -> Option<&bool>
pub fn fetch_relatives(&self) -> Option<&bool>
Whether to fetch this nodes ancestors, siblings and children. Defaults to true.
Trait Implementations§
Source§impl Clone for GetPartialAxTreeCommand
impl Clone for GetPartialAxTreeCommand
Source§fn clone(&self) -> GetPartialAxTreeCommand
fn clone(&self) -> GetPartialAxTreeCommand
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 GetPartialAxTreeCommand
impl Command for GetPartialAxTreeCommand
Source§impl Debug for GetPartialAxTreeCommand
impl Debug for GetPartialAxTreeCommand
Source§impl<'de> Deserialize<'de> for GetPartialAxTreeCommand
impl<'de> Deserialize<'de> for GetPartialAxTreeCommand
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 GetPartialAxTreeCommand
impl RefUnwindSafe for GetPartialAxTreeCommand
impl Send for GetPartialAxTreeCommand
impl Sync for GetPartialAxTreeCommand
impl Unpin for GetPartialAxTreeCommand
impl UnwindSafe for GetPartialAxTreeCommand
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