pub struct DeltaInt64 {
pub operation: Operation,
pub ordinal: u64,
pub key: String,
pub old_value: i64,
pub new_value: i64,
}
Fields§
§operation: Operation
§ordinal: u64
§key: String
§old_value: i64
§new_value: i64
Implementations§
Source§impl DeltaInt64
impl DeltaInt64
Trait Implementations§
Source§impl Clone for DeltaInt64
impl Clone for DeltaInt64
Source§fn clone(&self) -> DeltaInt64
fn clone(&self) -> DeltaInt64
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeltaInt64
impl Debug for DeltaInt64
Source§impl Delta for &DeltaInt64
impl Delta for &DeltaInt64
Source§impl Delta for DeltaInt64
impl Delta for DeltaInt64
Source§impl From<StoreDelta> for DeltaInt64
impl From<StoreDelta> for DeltaInt64
Source§fn from(d: StoreDelta) -> Self
fn from(d: StoreDelta) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DeltaInt64
impl PartialEq for DeltaInt64
impl StructuralPartialEq for DeltaInt64
Auto Trait Implementations§
impl Freeze for DeltaInt64
impl RefUnwindSafe for DeltaInt64
impl Send for DeltaInt64
impl Sync for DeltaInt64
impl Unpin for DeltaInt64
impl UnwindSafe for DeltaInt64
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