pub struct GetChildAXNodesParams {
pub id: AXNodeId,
pub frameId: Option<FrameId>,
}Expand description
Fetches a particular accessibility node by AXNodeId. Requires ‘enable()’ to have been called previously.
Fields§
§id: AXNodeId§frameId: Option<FrameId>The frame in whose document the node resides. If omitted, the root frame is used.
Trait Implementations§
Source§impl Clone for GetChildAXNodesParams
impl Clone for GetChildAXNodesParams
Source§fn clone(&self) -> GetChildAXNodesParams
fn clone(&self) -> GetChildAXNodesParams
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 GetChildAXNodesParams
impl Debug for GetChildAXNodesParams
Source§impl Default for GetChildAXNodesParams
impl Default for GetChildAXNodesParams
Source§fn default() -> GetChildAXNodesParams
fn default() -> GetChildAXNodesParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetChildAXNodesParams
impl<'de> Deserialize<'de> for GetChildAXNodesParams
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
Auto Trait Implementations§
impl Freeze for GetChildAXNodesParams
impl RefUnwindSafe for GetChildAXNodesParams
impl Send for GetChildAXNodesParams
impl Sync for GetChildAXNodesParams
impl Unpin for GetChildAXNodesParams
impl UnsafeUnpin for GetChildAXNodesParams
impl UnwindSafe for GetChildAXNodesParams
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