pub enum NodeEvent<'a> {
    Enter(RefNode<'a>),
    Leave(RefNode<'a>),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for NodeEvent<'a>
impl<'a> RefUnwindSafe for NodeEvent<'a>
impl<'a> Send for NodeEvent<'a>
impl<'a> Sync for NodeEvent<'a>
impl<'a> Unpin for NodeEvent<'a>
impl<'a> UnwindSafe for NodeEvent<'a>
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