pub struct UiNode {Show 17 fields
pub node_id: String,
pub class_name: Option<String>,
pub text: Option<String>,
pub content_description: Option<String>,
pub resource_id: Option<String>,
pub package_name: Option<String>,
pub bounds: Option<Bounds>,
pub clickable: bool,
pub enabled: bool,
pub focusable: bool,
pub focused: bool,
pub scrollable: bool,
pub selected: bool,
pub checkable: bool,
pub checked: bool,
pub long_clickable: bool,
pub children: Vec<UiNode>,
}Fields§
§node_id: String§class_name: Option<String>§text: Option<String>§content_description: Option<String>§resource_id: Option<String>§package_name: Option<String>§bounds: Option<Bounds>§clickable: bool§enabled: bool§focusable: bool§focused: bool§scrollable: bool§selected: bool§checkable: bool§checked: bool§long_clickable: bool§children: Vec<UiNode>Trait Implementations§
Source§impl<'de> Deserialize<'de> for UiNode
impl<'de> Deserialize<'de> for UiNode
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 UiNode
impl RefUnwindSafe for UiNode
impl Send for UiNode
impl Sync for UiNode
impl Unpin for UiNode
impl UnsafeUnpin for UiNode
impl UnwindSafe for UiNode
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