pub struct AxRelatedNodeBuilder { /* private fields */ }Expand description
Builder for AxRelatedNode.
Implementations§
Source§impl AxRelatedNodeBuilder
impl AxRelatedNodeBuilder
Sourcepub fn backend_dom_node_id<VALUE: Into<BackendNodeId>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn backend_dom_node_id<VALUE: Into<BackendNodeId>>( &mut self, value: VALUE, ) -> &mut Self
The BackendNodeId of the related DOM node.
Sourcepub fn idref<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn idref<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The IDRef value provided, if any.
Sourcepub fn text<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn text<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The text alternative of this node in the current context.
Sourcepub fn build(&self) -> Result<AxRelatedNode, AxRelatedNodeBuilderError>
pub fn build(&self) -> Result<AxRelatedNode, AxRelatedNodeBuilderError>
Trait Implementations§
Source§impl Clone for AxRelatedNodeBuilder
impl Clone for AxRelatedNodeBuilder
Source§fn clone(&self) -> AxRelatedNodeBuilder
fn clone(&self) -> AxRelatedNodeBuilder
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 AxRelatedNodeBuilder
impl RefUnwindSafe for AxRelatedNodeBuilder
impl Send for AxRelatedNodeBuilder
impl Sync for AxRelatedNodeBuilder
impl Unpin for AxRelatedNodeBuilder
impl UnsafeUnpin for AxRelatedNodeBuilder
impl UnwindSafe for AxRelatedNodeBuilder
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