pub struct Change<T: Serialize> {
pub payload: ChangePayload<T>,
pub links: Option<Links>,
}
Expand description
Change serialization structure.
Fields§
§payload: ChangePayload<T>
Payload for the change event
links: Option<Links>
List of links to include.
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