pub struct GetRootAxNodeParams {
pub frame_id: Option<FrameId>,
}Expand description
Fetches the root node.
Requires enable() to have been called previously.
getRootAXNode
Fields§
§frame_id: Option<FrameId>The frame in whose document the node resides. If omitted, the root frame is used.
Implementations§
Source§impl GetRootAxNodeParams
impl GetRootAxNodeParams
pub fn builder() -> GetRootAxNodeParamsBuilder
Source§impl GetRootAxNodeParams
impl GetRootAxNodeParams
pub const IDENTIFIER: &'static str = "Accessibility.getRootAXNode"
Trait Implementations§
Source§impl Clone for GetRootAxNodeParams
impl Clone for GetRootAxNodeParams
Source§fn clone(&self) -> GetRootAxNodeParams
fn clone(&self) -> GetRootAxNodeParams
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 Command for GetRootAxNodeParams
impl Command for GetRootAxNodeParams
Source§impl Debug for GetRootAxNodeParams
impl Debug for GetRootAxNodeParams
Source§impl Default for GetRootAxNodeParams
impl Default for GetRootAxNodeParams
Source§fn default() -> GetRootAxNodeParams
fn default() -> GetRootAxNodeParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetRootAxNodeParams
impl<'de> Deserialize<'de> for GetRootAxNodeParams
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 Method for GetRootAxNodeParams
impl Method for GetRootAxNodeParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for GetRootAxNodeParams
impl MethodType for GetRootAxNodeParams
Source§impl PartialEq for GetRootAxNodeParams
impl PartialEq for GetRootAxNodeParams
Source§impl Serialize for GetRootAxNodeParams
impl Serialize for GetRootAxNodeParams
impl StructuralPartialEq for GetRootAxNodeParams
Auto Trait Implementations§
impl Freeze for GetRootAxNodeParams
impl RefUnwindSafe for GetRootAxNodeParams
impl Send for GetRootAxNodeParams
impl Sync for GetRootAxNodeParams
impl Unpin for GetRootAxNodeParams
impl UnwindSafe for GetRootAxNodeParams
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