pub struct QueryAxTreeCommandBuilder { /* private fields */ }Available on crate features
experimental and Accessibility and DOM only.Implementations§
Source§impl QueryAxTreeCommandBuilder
impl QueryAxTreeCommandBuilder
Sourcepub fn node_id(&mut self, v: NodeId) -> &mut Self
pub fn node_id(&mut self, v: NodeId) -> &mut Self
Identifier of the node for the root to query.
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 for the root to query.
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 for the root to query.
Sourcepub fn accessible_name(&mut self, v: String) -> &mut Self
pub fn accessible_name(&mut self, v: String) -> &mut Self
Find nodes with this computed name.
pub fn build(&mut self) -> Result<QueryAxTreeCommand, &'static str>
Trait Implementations§
Source§impl Clone for QueryAxTreeCommandBuilder
impl Clone for QueryAxTreeCommandBuilder
Source§fn clone(&self) -> QueryAxTreeCommandBuilder
fn clone(&self) -> QueryAxTreeCommandBuilder
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 QueryAxTreeCommandBuilder
impl Debug for QueryAxTreeCommandBuilder
Auto Trait Implementations§
impl Freeze for QueryAxTreeCommandBuilder
impl RefUnwindSafe for QueryAxTreeCommandBuilder
impl Send for QueryAxTreeCommandBuilder
impl Sync for QueryAxTreeCommandBuilder
impl Unpin for QueryAxTreeCommandBuilder
impl UnwindSafe for QueryAxTreeCommandBuilder
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