pub struct UpdateDelta {
pub base_version: u64,
pub target_version: u64,
pub delta: Bytes,
pub encoding: DeltaEncoding,
}Expand description
Update delta representation
Fields§
§base_version: u64Base version
target_version: u64Target version
delta: BytesDelta data
encoding: DeltaEncodingDelta encoding type
Implementations§
Trait Implementations§
Source§impl Clone for UpdateDelta
impl Clone for UpdateDelta
Source§fn clone(&self) -> UpdateDelta
fn clone(&self) -> UpdateDelta
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 moreAuto Trait Implementations§
impl !Freeze for UpdateDelta
impl RefUnwindSafe for UpdateDelta
impl Send for UpdateDelta
impl Sync for UpdateDelta
impl Unpin for UpdateDelta
impl UnsafeUnpin for UpdateDelta
impl UnwindSafe for UpdateDelta
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