pub struct GetChildAxNodes {
pub method: GetChildAxNodesMethod,
pub params: GetChildAxNodesParams,
}Expand description
Fetches a particular accessibility node by AXNodeId.
Requires enable() to have been called previously.
getChildAXNodes
Fields§
§method: GetChildAxNodesMethod§params: GetChildAxNodesParamsImplementations§
Source§impl GetChildAxNodes
impl GetChildAxNodes
pub fn builder() -> GetChildAxNodesBuilder
Source§impl GetChildAxNodes
impl GetChildAxNodes
pub const IDENTIFIER: &'static str = "Accessibility.getChildAXNodes"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetChildAxNodes
impl Clone for GetChildAxNodes
Source§fn clone(&self) -> GetChildAxNodes
fn clone(&self) -> GetChildAxNodes
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 GetChildAxNodes
impl CommandResult for GetChildAxNodes
type Result = GetChildAxNodesResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetChildAxNodes
impl Debug for GetChildAxNodes
Source§impl<'de> Deserialize<'de> for GetChildAxNodes
impl<'de> Deserialize<'de> for GetChildAxNodes
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<GetChildAxNodes> for AccessibilityCommands
impl From<GetChildAxNodes> for AccessibilityCommands
Source§fn from(v: GetChildAxNodes) -> Self
fn from(v: GetChildAxNodes) -> Self
Converts to this type from the input type.
Source§impl From<GetChildAxNodes> for BrowserProtocolCommands
impl From<GetChildAxNodes> for BrowserProtocolCommands
Source§fn from(v: GetChildAxNodes) -> Self
fn from(v: GetChildAxNodes) -> Self
Converts to this type from the input type.
Source§impl From<GetChildAxNodes> for Command
impl From<GetChildAxNodes> for Command
Source§fn from(v: GetChildAxNodes) -> Self
fn from(v: GetChildAxNodes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetChildAxNodes
impl PartialEq for GetChildAxNodes
Source§impl Serialize for GetChildAxNodes
impl Serialize for GetChildAxNodes
Source§impl TryFrom<AccessibilityCommands> for GetChildAxNodes
impl TryFrom<AccessibilityCommands> for GetChildAxNodes
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, <GetChildAxNodes as TryFrom<AccessibilityCommands>>::Error>
fn try_from( e: AccessibilityCommands, ) -> Result<Self, <GetChildAxNodes as TryFrom<AccessibilityCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for GetChildAxNodes
impl TryFrom<BrowserProtocolCommands> for GetChildAxNodes
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, <GetChildAxNodes as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetChildAxNodes as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetChildAxNodes
impl TryFrom<Command> for GetChildAxNodes
impl StructuralPartialEq for GetChildAxNodes
Auto Trait Implementations§
impl Freeze for GetChildAxNodes
impl RefUnwindSafe for GetChildAxNodes
impl Send for GetChildAxNodes
impl Sync for GetChildAxNodes
impl Unpin for GetChildAxNodes
impl UnsafeUnpin for GetChildAxNodes
impl UnwindSafe for GetChildAxNodes
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