pub struct AxNode {
pub node_id: String,
pub role: String,
pub subrole: Option<String>,
pub title: Option<String>,
pub identifier: Option<String>,
pub value_preview: Option<String>,
pub enabled: bool,
pub focused: bool,
pub frame: Option<AxFrame>,
pub actions: Vec<String>,
pub path: Vec<String>,
}Fields§
§node_id: String§role: String§subrole: Option<String>§title: Option<String>§identifier: Option<String>§value_preview: Option<String>§enabled: bool§focused: bool§frame: Option<AxFrame>§actions: Vec<String>§path: Vec<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for AxNode
impl<'de> Deserialize<'de> for AxNode
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
impl StructuralPartialEq for AxNode
Auto Trait Implementations§
impl Freeze for AxNode
impl RefUnwindSafe for AxNode
impl Send for AxNode
impl Sync for AxNode
impl Unpin for AxNode
impl UnsafeUnpin for AxNode
impl UnwindSafe for AxNode
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