pub struct GetPartialAxTreeCommandBuilder { /* private fields */ }Available on crate features
experimental and Accessibility and DOM only.Implementations§
Source§impl GetPartialAxTreeCommandBuilder
impl GetPartialAxTreeCommandBuilder
Sourcepub fn node_id(&mut self, v: NodeId) -> &mut Self
pub fn node_id(&mut self, v: NodeId) -> &mut Self
Identifier of the node to get the partial accessibility tree for.
Sourcepub fn backend_node_id(&mut self, v: BackendNodeId) -> &mut Self
pub fn backend_node_id(&mut self, v: BackendNodeId) -> &mut Self
Identifier of the backend node to get the partial accessibility tree for.
Sourcepub fn object_id(&mut self, v: RemoteObjectId) -> &mut Self
pub fn object_id(&mut self, v: RemoteObjectId) -> &mut Self
JavaScript object id of the node wrapper to get the partial accessibility tree for.
Sourcepub fn fetch_relatives(&mut self, v: bool) -> &mut Self
pub fn fetch_relatives(&mut self, v: bool) -> &mut Self
Whether to fetch this nodes ancestors, siblings and children. Defaults to true.
pub fn build(&mut self) -> Result<GetPartialAxTreeCommand, &'static str>
Trait Implementations§
Source§impl Clone for GetPartialAxTreeCommandBuilder
impl Clone for GetPartialAxTreeCommandBuilder
Source§fn clone(&self) -> GetPartialAxTreeCommandBuilder
fn clone(&self) -> GetPartialAxTreeCommandBuilder
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 moreAuto Trait Implementations§
impl Freeze for GetPartialAxTreeCommandBuilder
impl RefUnwindSafe for GetPartialAxTreeCommandBuilder
impl Send for GetPartialAxTreeCommandBuilder
impl Sync for GetPartialAxTreeCommandBuilder
impl Unpin for GetPartialAxTreeCommandBuilder
impl UnwindSafe for GetPartialAxTreeCommandBuilder
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