pub struct GetRootAxNode {
pub method: GetRootAxNodeMethod,
pub params: GetRootAxNodeParams,
}Expand description
Fetches the root node.
Requires enable() to have been called previously.
getRootAXNode
Fields§
§method: GetRootAxNodeMethod§params: GetRootAxNodeParamsImplementations§
Source§impl GetRootAxNode
impl GetRootAxNode
pub fn builder() -> GetRootAxNodeBuilder
Source§impl GetRootAxNode
impl GetRootAxNode
pub const IDENTIFIER: &'static str = "Accessibility.getRootAXNode"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetRootAxNode
impl Clone for GetRootAxNode
Source§fn clone(&self) -> GetRootAxNode
fn clone(&self) -> GetRootAxNode
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 CommandResult for GetRootAxNode
impl CommandResult for GetRootAxNode
type Result = GetRootAxNodeResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetRootAxNode
impl Debug for GetRootAxNode
Source§impl<'de> Deserialize<'de> for GetRootAxNode
impl<'de> Deserialize<'de> for GetRootAxNode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<GetRootAxNode> for AccessibilityCommands
impl From<GetRootAxNode> for AccessibilityCommands
Source§fn from(v: GetRootAxNode) -> Self
fn from(v: GetRootAxNode) -> Self
Converts to this type from the input type.
Source§impl From<GetRootAxNode> for BrowserProtocolCommands
impl From<GetRootAxNode> for BrowserProtocolCommands
Source§fn from(v: GetRootAxNode) -> Self
fn from(v: GetRootAxNode) -> Self
Converts to this type from the input type.
Source§impl From<GetRootAxNode> for Command
impl From<GetRootAxNode> for Command
Source§fn from(v: GetRootAxNode) -> Self
fn from(v: GetRootAxNode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetRootAxNode
impl PartialEq for GetRootAxNode
Source§impl Serialize for GetRootAxNode
impl Serialize for GetRootAxNode
Source§impl TryFrom<AccessibilityCommands> for GetRootAxNode
impl TryFrom<AccessibilityCommands> for GetRootAxNode
Source§type Error = AccessibilityCommands
type Error = AccessibilityCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: AccessibilityCommands,
) -> Result<Self, <GetRootAxNode as TryFrom<AccessibilityCommands>>::Error>
fn try_from( e: AccessibilityCommands, ) -> Result<Self, <GetRootAxNode as TryFrom<AccessibilityCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for GetRootAxNode
impl TryFrom<BrowserProtocolCommands> for GetRootAxNode
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <GetRootAxNode as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetRootAxNode as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetRootAxNode
impl TryFrom<Command> for GetRootAxNode
impl StructuralPartialEq for GetRootAxNode
Auto Trait Implementations§
impl Freeze for GetRootAxNode
impl RefUnwindSafe for GetRootAxNode
impl Send for GetRootAxNode
impl Sync for GetRootAxNode
impl Unpin for GetRootAxNode
impl UnsafeUnpin for GetRootAxNode
impl UnwindSafe for GetRootAxNode
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