pub struct EventData {
pub widget_name: String,
pub widget_id: u32,
pub changes: Vec<Change>,
pub tree_changes: HashMap<Rc<str>, TreeChange>,
}Fields§
§widget_name: String§widget_id: u32§changes: Vec<Change>§tree_changes: HashMap<Rc<str>, TreeChange>Implementations§
Source§impl EventData
impl EventData
pub fn tree_change_required(&self, iid: &Rc<str>, kind: TreeChangeKind) -> bool
pub fn add_tree_change(&mut self, iid: &Rc<str>, change: ChangeIndexCell)
pub fn has_non_selection_change(&self, reverse: bool) -> bool
Trait Implementations§
impl StructuralPartialEq for EventData
Auto Trait Implementations§
impl !Send for EventData
impl !Sync for EventData
impl Freeze for EventData
impl RefUnwindSafe for EventData
impl Unpin for EventData
impl UnsafeUnpin for EventData
impl UnwindSafe for EventData
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