pub struct DeltaEvent {
pub op: OpType,
pub origin_id: String,
pub query_id: String,
pub row_key: String,
pub row_data: Value,
pub row_hash: String,
pub cycle_id: u64,
pub timestamp: DateTime<Utc>,
}Fields§
§op: OpType§origin_id: String§query_id: String§row_key: String§row_data: Value§row_hash: String§cycle_id: u64§timestamp: DateTime<Utc>Trait Implementations§
Source§impl Clone for DeltaEvent
impl Clone for DeltaEvent
Source§fn clone(&self) -> DeltaEvent
fn clone(&self) -> DeltaEvent
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 DeltaEvent
impl Debug for DeltaEvent
Source§impl<'de> Deserialize<'de> for DeltaEvent
impl<'de> Deserialize<'de> for DeltaEvent
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
Source§impl From<&DeltaEvent> for EventEnvelope
impl From<&DeltaEvent> for EventEnvelope
Source§fn from(e: &DeltaEvent) -> Self
fn from(e: &DeltaEvent) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DeltaEvent
impl PartialEq for DeltaEvent
Source§impl Serialize for DeltaEvent
impl Serialize for DeltaEvent
impl StructuralPartialEq for DeltaEvent
Auto Trait Implementations§
impl Freeze for DeltaEvent
impl RefUnwindSafe for DeltaEvent
impl Send for DeltaEvent
impl Sync for DeltaEvent
impl Unpin for DeltaEvent
impl UnsafeUnpin for DeltaEvent
impl UnwindSafe for DeltaEvent
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