pub struct AriaSnapshot {
pub snapshot: String,
pub url: String,
pub title: String,
pub refs: Vec<String>,
}Expand description
ARIA accessibility tree snapshot of a web page (v2).
Fields§
§snapshot: StringARIA tree as YAML.
url: StringCurrent page URL.
title: StringPage title.
refs: Vec<String>Available ref IDs (e.g. ["e1", "e2"]).
Trait Implementations§
Source§impl Clone for AriaSnapshot
impl Clone for AriaSnapshot
Source§fn clone(&self) -> AriaSnapshot
fn clone(&self) -> AriaSnapshot
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 AriaSnapshot
impl Debug for AriaSnapshot
Source§impl<'de> Deserialize<'de> for AriaSnapshot
impl<'de> Deserialize<'de> for AriaSnapshot
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 AriaSnapshot
impl RefUnwindSafe for AriaSnapshot
impl Send for AriaSnapshot
impl Sync for AriaSnapshot
impl Unpin for AriaSnapshot
impl UnwindSafe for AriaSnapshot
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