pub struct AxNodeBuilder { /* private fields */ }Implementations§
Source§impl AxNodeBuilder
impl AxNodeBuilder
pub fn node_id(self, node_id: impl Into<AxNodeId>) -> Self
pub fn ignored(self, ignored: impl Into<bool>) -> Self
pub fn ignored_reason(self, ignored_reason: impl Into<AxProperty>) -> Self
pub fn ignored_reasons<I, S>(self, ignored_reasons: I) -> Self
pub fn role(self, role: impl Into<AxValue>) -> Self
pub fn chrome_role(self, chrome_role: impl Into<AxValue>) -> Self
pub fn name(self, name: impl Into<AxValue>) -> Self
pub fn description(self, description: impl Into<AxValue>) -> Self
pub fn value(self, value: impl Into<AxValue>) -> Self
pub fn propertie(self, propertie: impl Into<AxProperty>) -> Self
pub fn properties<I, S>(self, properties: I) -> Self
pub fn parent_id(self, parent_id: impl Into<AxNodeId>) -> Self
pub fn child_id(self, child_id: impl Into<AxNodeId>) -> Self
pub fn child_ids<I, S>(self, child_ids: I) -> Self
pub fn backend_dom_node_id( self, backend_dom_node_id: impl Into<BackendNodeId>, ) -> Self
pub fn frame_id(self, frame_id: impl Into<FrameId>) -> Self
pub fn build(self) -> Result<AxNode, String>
Trait Implementations§
Source§impl Clone for AxNodeBuilder
impl Clone for AxNodeBuilder
Source§fn clone(&self) -> AxNodeBuilder
fn clone(&self) -> AxNodeBuilder
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 Default for AxNodeBuilder
impl Default for AxNodeBuilder
Source§fn default() -> AxNodeBuilder
fn default() -> AxNodeBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AxNodeBuilder
impl RefUnwindSafe for AxNodeBuilder
impl Send for AxNodeBuilder
impl Sync for AxNodeBuilder
impl Unpin for AxNodeBuilder
impl UnwindSafe for AxNodeBuilder
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