pub struct Change<T> {
    pub old: T,
    pub new: T,
}Available on crate feature 
events only.Expand description
A simple representation of a change, containing old and new data.
Fields§
§old: TThe old data.
new: TThe new data.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Change<T>where
    T: Freeze,
impl<T> RefUnwindSafe for Change<T>where
    T: RefUnwindSafe,
impl<T> Send for Change<T>where
    T: Send,
impl<T> Sync for Change<T>where
    T: Sync,
impl<T> Unpin for Change<T>where
    T: Unpin,
impl<T> UnwindSafe for Change<T>where
    T: UnwindSafe,
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