pub struct GetPartialAXTree {
pub node_id: Option<NodeId>,
pub backend_node_id: Option<BackendNodeId>,
pub object_id: Option<RemoteObjectId>,
pub fetch_relatives: Option<bool>,
}Expand description
Fetches the accessibility node and partial accessibility tree for this DOM node, if it exists.
Fields§
§node_id: Option<NodeId>Identifier of the node to get the partial accessibility tree for.
backend_node_id: Option<BackendNodeId>Identifier of the backend node to get the partial accessibility tree for.
object_id: Option<RemoteObjectId>JavaScript object id of the node wrapper to get the partial accessibility tree for.
fetch_relatives: Option<bool>Whether to fetch this node’s ancestors, siblings and children. Defaults to true.
Trait Implementations§
Source§impl Clone for GetPartialAXTree
impl Clone for GetPartialAXTree
Source§fn clone(&self) -> GetPartialAXTree
fn clone(&self) -> GetPartialAXTree
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 GetPartialAXTree
impl Debug for GetPartialAXTree
Source§impl<'de> Deserialize<'de> for GetPartialAXTree
impl<'de> Deserialize<'de> for GetPartialAXTree
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
Source§impl Method for GetPartialAXTree
impl Method for GetPartialAXTree
const NAME: &'static str = "Accessibility.getPartialAXTree"
type ReturnObject = GetPartialAXTreeReturnObject
fn to_method_call(self, call_id: CallId) -> MethodCall<Self>where
Self: Sized,
Source§impl PartialEq for GetPartialAXTree
impl PartialEq for GetPartialAXTree
Source§impl Serialize for GetPartialAXTree
impl Serialize for GetPartialAXTree
impl StructuralPartialEq for GetPartialAXTree
Auto Trait Implementations§
impl Freeze for GetPartialAXTree
impl RefUnwindSafe for GetPartialAXTree
impl Send for GetPartialAXTree
impl Sync for GetPartialAXTree
impl Unpin for GetPartialAXTree
impl UnsafeUnpin for GetPartialAXTree
impl UnwindSafe for GetPartialAXTree
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