pub struct GetPartialAxTree {
pub method: GetPartialAxTreeMethod,
pub params: GetPartialAxTreeParams,
}Expand description
Fetches the accessibility node and partial accessibility tree for this DOM node, if it exists. getPartialAXTree
Fields§
§method: GetPartialAxTreeMethod§params: GetPartialAxTreeParamsImplementations§
Source§impl GetPartialAxTree
impl GetPartialAxTree
pub fn builder() -> GetPartialAxTreeBuilder
Source§impl GetPartialAxTree
impl GetPartialAxTree
pub const IDENTIFIER: &'static str = "Accessibility.getPartialAXTree"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetPartialAxTree
impl Clone for GetPartialAxTree
Source§fn clone(&self) -> GetPartialAxTree
fn clone(&self) -> GetPartialAxTree
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 GetPartialAxTree
impl CommandResult for GetPartialAxTree
type Result = GetPartialAxTreeResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetPartialAxTree
impl Debug for GetPartialAxTree
Source§impl<'de> Deserialize<'de> for GetPartialAxTree
impl<'de> Deserialize<'de> for GetPartialAxTree
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<GetPartialAxTree> for AccessibilityCommands
impl From<GetPartialAxTree> for AccessibilityCommands
Source§fn from(v: GetPartialAxTree) -> Self
fn from(v: GetPartialAxTree) -> Self
Converts to this type from the input type.
Source§impl From<GetPartialAxTree> for BrowserProtocolCommands
impl From<GetPartialAxTree> for BrowserProtocolCommands
Source§fn from(v: GetPartialAxTree) -> Self
fn from(v: GetPartialAxTree) -> Self
Converts to this type from the input type.
Source§impl From<GetPartialAxTree> for Command
impl From<GetPartialAxTree> for Command
Source§fn from(v: GetPartialAxTree) -> Self
fn from(v: GetPartialAxTree) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetPartialAxTree
impl PartialEq for GetPartialAxTree
Source§impl Serialize for GetPartialAxTree
impl Serialize for GetPartialAxTree
Source§impl TryFrom<AccessibilityCommands> for GetPartialAxTree
impl TryFrom<AccessibilityCommands> for GetPartialAxTree
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, <GetPartialAxTree as TryFrom<AccessibilityCommands>>::Error>
fn try_from( e: AccessibilityCommands, ) -> Result<Self, <GetPartialAxTree as TryFrom<AccessibilityCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for GetPartialAxTree
impl TryFrom<BrowserProtocolCommands> for GetPartialAxTree
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, <GetPartialAxTree as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetPartialAxTree as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetPartialAxTree
impl TryFrom<Command> for GetPartialAxTree
impl StructuralPartialEq for GetPartialAxTree
Auto Trait Implementations§
impl Freeze for GetPartialAxTree
impl RefUnwindSafe for GetPartialAxTree
impl Send for GetPartialAxTree
impl Sync for GetPartialAxTree
impl Unpin for GetPartialAxTree
impl UnsafeUnpin for GetPartialAxTree
impl UnwindSafe for GetPartialAxTree
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