pub struct DeltaPayload {
pub changes: Vec<DeltaChange>,
pub base_timestamp: u64,
pub metadata: DeltaMetadata,
}Fields§
§changes: Vec<DeltaChange>§base_timestamp: u64§metadata: DeltaMetadataTrait Implementations§
Source§impl Clone for DeltaPayload
impl Clone for DeltaPayload
Source§fn clone(&self) -> DeltaPayload
fn clone(&self) -> DeltaPayload
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 DeltaPayload
impl Debug for DeltaPayload
Source§impl<'de> Deserialize<'de> for DeltaPayload
impl<'de> Deserialize<'de> for DeltaPayload
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DeltaPayload
impl RefUnwindSafe for DeltaPayload
impl Send for DeltaPayload
impl Sync for DeltaPayload
impl Unpin for DeltaPayload
impl UnwindSafe for DeltaPayload
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