pub enum AccessibilityCommands {
Disable(Disable),
Enable(Enable),
GetPartialAxTree(GetPartialAxTree),
GetFullAxTree(GetFullAxTree),
GetRootAxNode(GetRootAxNode),
GetAxNodeAndAncestors(GetAxNodeAndAncestors),
GetChildAxNodes(GetChildAxNodes),
QueryAxTree(QueryAxTree),
}Variants§
Disable(Disable)
Enable(Enable)
GetPartialAxTree(GetPartialAxTree)
GetFullAxTree(GetFullAxTree)
GetRootAxNode(GetRootAxNode)
GetAxNodeAndAncestors(GetAxNodeAndAncestors)
GetChildAxNodes(GetChildAxNodes)
QueryAxTree(QueryAxTree)
Implementations§
Source§impl AccessibilityCommands
impl AccessibilityCommands
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AccessibilityCommands
impl Clone for AccessibilityCommands
Source§fn clone(&self) -> AccessibilityCommands
fn clone(&self) -> AccessibilityCommands
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 Debug for AccessibilityCommands
impl Debug for AccessibilityCommands
Source§impl<'de> Deserialize<'de> for AccessibilityCommands
impl<'de> Deserialize<'de> for AccessibilityCommands
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<AccessibilityCommands> for BrowserProtocolCommands
impl From<AccessibilityCommands> for BrowserProtocolCommands
Source§fn from(v: AccessibilityCommands) -> Self
fn from(v: AccessibilityCommands) -> Self
Converts to this type from the input type.
Source§impl From<AccessibilityCommands> for Command
impl From<AccessibilityCommands> for Command
Source§fn from(v: AccessibilityCommands) -> Self
fn from(v: AccessibilityCommands) -> Self
Converts to this type from the input type.
Source§impl From<Disable> for AccessibilityCommands
impl From<Disable> for AccessibilityCommands
Source§impl From<Enable> for AccessibilityCommands
impl From<Enable> for AccessibilityCommands
Source§impl From<GetAxNodeAndAncestors> for AccessibilityCommands
impl From<GetAxNodeAndAncestors> for AccessibilityCommands
Source§fn from(v: GetAxNodeAndAncestors) -> Self
fn from(v: GetAxNodeAndAncestors) -> Self
Converts to this type from the input type.
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<GetFullAxTree> for AccessibilityCommands
impl From<GetFullAxTree> for AccessibilityCommands
Source§fn from(v: GetFullAxTree) -> Self
fn from(v: GetFullAxTree) -> Self
Converts to this type from the input type.
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<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<QueryAxTree> for AccessibilityCommands
impl From<QueryAxTree> for AccessibilityCommands
Source§fn from(v: QueryAxTree) -> Self
fn from(v: QueryAxTree) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AccessibilityCommands
impl PartialEq for AccessibilityCommands
Source§impl Serialize for AccessibilityCommands
impl Serialize for AccessibilityCommands
Source§impl TryFrom<AccessibilityCommands> for Disable
impl TryFrom<AccessibilityCommands> for Disable
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, <Disable as TryFrom<AccessibilityCommands>>::Error>
fn try_from( e: AccessibilityCommands, ) -> Result<Self, <Disable as TryFrom<AccessibilityCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<AccessibilityCommands> for Enable
impl TryFrom<AccessibilityCommands> for Enable
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, <Enable as TryFrom<AccessibilityCommands>>::Error>
fn try_from( e: AccessibilityCommands, ) -> Result<Self, <Enable as TryFrom<AccessibilityCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<AccessibilityCommands> for GetAxNodeAndAncestors
impl TryFrom<AccessibilityCommands> for GetAxNodeAndAncestors
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, <GetAxNodeAndAncestors as TryFrom<AccessibilityCommands>>::Error>
fn try_from( e: AccessibilityCommands, ) -> Result<Self, <GetAxNodeAndAncestors as TryFrom<AccessibilityCommands>>::Error>
Performs the conversion.
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<AccessibilityCommands> for GetFullAxTree
impl TryFrom<AccessibilityCommands> for GetFullAxTree
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, <GetFullAxTree as TryFrom<AccessibilityCommands>>::Error>
fn try_from( e: AccessibilityCommands, ) -> Result<Self, <GetFullAxTree as TryFrom<AccessibilityCommands>>::Error>
Performs the conversion.
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<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<AccessibilityCommands> for QueryAxTree
impl TryFrom<AccessibilityCommands> for QueryAxTree
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, <QueryAxTree as TryFrom<AccessibilityCommands>>::Error>
fn try_from( e: AccessibilityCommands, ) -> Result<Self, <QueryAxTree as TryFrom<AccessibilityCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for AccessibilityCommands
impl TryFrom<BrowserProtocolCommands> for AccessibilityCommands
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, <AccessibilityCommands as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <AccessibilityCommands as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for AccessibilityCommands
impl TryFrom<Command> for AccessibilityCommands
impl StructuralPartialEq for AccessibilityCommands
Auto Trait Implementations§
impl Freeze for AccessibilityCommands
impl RefUnwindSafe for AccessibilityCommands
impl Send for AccessibilityCommands
impl Sync for AccessibilityCommands
impl Unpin for AccessibilityCommands
impl UnsafeUnpin for AccessibilityCommands
impl UnwindSafe for AccessibilityCommands
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