pub struct GetAXNodeAndAncestorsBuilder { /* private fields */ }Expand description
Builder for GetAXNodeAndAncestors.
Implementations§
Source§impl GetAXNodeAndAncestorsBuilder
impl GetAXNodeAndAncestorsBuilder
Sourcepub fn node_id<VALUE: Into<NodeId>>(&mut self, value: VALUE) -> &mut Self
pub fn node_id<VALUE: Into<NodeId>>(&mut self, value: VALUE) -> &mut Self
Identifier of the node to get.
Sourcepub fn backend_node_id<VALUE: Into<BackendNodeId>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn backend_node_id<VALUE: Into<BackendNodeId>>( &mut self, value: VALUE, ) -> &mut Self
Identifier of the backend node to get.
Sourcepub fn object_id<VALUE: Into<RemoteObjectId>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn object_id<VALUE: Into<RemoteObjectId>>( &mut self, value: VALUE, ) -> &mut Self
JavaScript object id of the node wrapper to get.
Sourcepub fn build(
&self,
) -> Result<GetAXNodeAndAncestors, GetAXNodeAndAncestorsBuilderError>
pub fn build( &self, ) -> Result<GetAXNodeAndAncestors, GetAXNodeAndAncestorsBuilderError>
Trait Implementations§
Source§impl Clone for GetAXNodeAndAncestorsBuilder
impl Clone for GetAXNodeAndAncestorsBuilder
Source§fn clone(&self) -> GetAXNodeAndAncestorsBuilder
fn clone(&self) -> GetAXNodeAndAncestorsBuilder
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 GetAXNodeAndAncestorsBuilder
impl RefUnwindSafe for GetAXNodeAndAncestorsBuilder
impl Send for GetAXNodeAndAncestorsBuilder
impl Sync for GetAXNodeAndAncestorsBuilder
impl Unpin for GetAXNodeAndAncestorsBuilder
impl UnsafeUnpin for GetAXNodeAndAncestorsBuilder
impl UnwindSafe for GetAXNodeAndAncestorsBuilder
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