pub struct DeltaResult {
pub created: Vec<DeltaEvent>,
pub updated: Vec<DeltaEvent>,
pub deleted: Vec<DeltaEvent>,
}Fields§
§created: Vec<DeltaEvent>§updated: Vec<DeltaEvent>§deleted: Vec<DeltaEvent>Implementations§
Trait Implementations§
Source§impl Clone for DeltaResult
impl Clone for DeltaResult
Source§fn clone(&self) -> DeltaResult
fn clone(&self) -> DeltaResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DeltaResult
impl Debug for DeltaResult
Source§impl Default for DeltaResult
impl Default for DeltaResult
Source§fn default() -> DeltaResult
fn default() -> DeltaResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeltaResult
impl RefUnwindSafe for DeltaResult
impl Send for DeltaResult
impl Sync for DeltaResult
impl Unpin for DeltaResult
impl UnsafeUnpin for DeltaResult
impl UnwindSafe for DeltaResult
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