pub struct UiTree {
pub roots: Vec<u64>,
pub nodes: Vec<NodeInfo>,
}Expand description
UI tree containing all nodes (used for AT-SPI responses)
Fields§
§roots: Vec<u64>Root node IDs
nodes: Vec<NodeInfo>All nodes in the tree
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UiTree
impl<'de> Deserialize<'de> for UiTree
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 UiTree
impl RefUnwindSafe for UiTree
impl Send for UiTree
impl Sync for UiTree
impl Unpin for UiTree
impl UnwindSafe for UiTree
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