pub struct Node {Show 19 fields
pub ref: String,
pub frame_id: String,
pub role: String,
pub name: Option<String>,
pub text: Option<String>,
pub visible: bool,
pub enabled: bool,
pub bbox: Option<BBox>,
pub actions: Vec<String>,
pub href: Option<String>,
pub src: Option<String>,
pub frame_ref: Option<String>,
pub input_type: Option<String>,
pub checked: Option<bool>,
pub selected: Option<bool>,
pub focused: Option<bool>,
pub value_redacted: Option<bool>,
pub selector_hint: Option<String>,
pub selector_hint_unique: Option<bool>,
}Fields§
§ref: StringPer-snapshot ref; not a durable selector.
frame_id: String§role: String§name: Option<String>§text: Option<String>§visible: bool§enabled: bool§bbox: Option<BBox>§actions: Vec<String>§href: Option<String>§src: Option<String>§frame_ref: Option<String>§input_type: Option<String>§checked: Option<bool>§selected: Option<bool>§focused: Option<bool>§value_redacted: Option<bool>§selector_hint: Option<String>§selector_hint_unique: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Node
impl<'de> Deserialize<'de> for Node
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 Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnsafeUnpin for Node
impl UnwindSafe for Node
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