pub struct GetPartialAXTreeParamsBuilder<'a> { /* private fields */ }Implementations§
Source§impl<'a> GetPartialAXTreeParamsBuilder<'a>
impl<'a> GetPartialAXTreeParamsBuilder<'a>
Sourcepub fn nodeId(self, nodeId: NodeId) -> Self
pub fn nodeId(self, nodeId: NodeId) -> Self
Identifier of the node to get the partial accessibility tree for.
Sourcepub fn backendNodeId(self, backendNodeId: BackendNodeId) -> Self
pub fn backendNodeId(self, backendNodeId: BackendNodeId) -> Self
Identifier of the backend node to get the partial accessibility tree for.
Sourcepub fn objectId(self, objectId: RemoteObjectId<'a>) -> Self
pub fn objectId(self, objectId: RemoteObjectId<'a>) -> Self
JavaScript object id of the node wrapper to get the partial accessibility tree for.
Sourcepub fn fetchRelatives(self, fetchRelatives: bool) -> Self
pub fn fetchRelatives(self, fetchRelatives: bool) -> Self
Whether to fetch this node’s ancestors, siblings and children. Defaults to true.
pub fn build(self) -> GetPartialAXTreeParams<'a>
Trait Implementations§
Source§impl<'a> Default for GetPartialAXTreeParamsBuilder<'a>
impl<'a> Default for GetPartialAXTreeParamsBuilder<'a>
Source§fn default() -> GetPartialAXTreeParamsBuilder<'a>
fn default() -> GetPartialAXTreeParamsBuilder<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for GetPartialAXTreeParamsBuilder<'a>
impl<'a> RefUnwindSafe for GetPartialAXTreeParamsBuilder<'a>
impl<'a> Send for GetPartialAXTreeParamsBuilder<'a>
impl<'a> Sync for GetPartialAXTreeParamsBuilder<'a>
impl<'a> Unpin for GetPartialAXTreeParamsBuilder<'a>
impl<'a> UnsafeUnpin for GetPartialAXTreeParamsBuilder<'a>
impl<'a> UnwindSafe for GetPartialAXTreeParamsBuilder<'a>
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