Enum differential_dataflow::capture::Message[][src]

pub enum Message<D, T, R> {
    Updates(Vec<(D, T, R)>),
    Progress(Progress<T>),
}

A message in the CDC V2 protocol.

Variants

Updates(Vec<(D, T, R)>)

A batch of updates that are certain to occur.

Each triple is an irrevocable statement about a change that occurs. Each statement contains a datum, a time, and a difference, and asserts that the multiplicity of the datum changes at the time by the difference.

Progress(Progress<T>)

An irrevocable statement about the number of updates within a time interval.

Trait Implementations

impl<D, T, R> Abomonation for Message<D, T, R> where
    Vec<(D, T, R)>: Abomonation,
    D: Abomonation,
    T: Abomonation,
    R: Abomonation,
    Progress<T>: Abomonation
[src]

impl<D: Clone, T: Clone, R: Clone> Clone for Message<D, T, R>[src]

impl<D: Debug, T: Debug, R: Debug> Debug for Message<D, T, R>[src]

impl<'de, D, T, R> Deserialize<'de> for Message<D, T, R> where
    D: Deserialize<'de>,
    T: Deserialize<'de>,
    R: Deserialize<'de>, 
[src]

impl<D: Eq, T: Eq, R: Eq> Eq for Message<D, T, R>[src]

impl<D: Ord, T: Ord, R: Ord> Ord for Message<D, T, R>[src]

impl<D: PartialEq, T: PartialEq, R: PartialEq> PartialEq<Message<D, T, R>> for Message<D, T, R>[src]

impl<D: PartialOrd, T: PartialOrd, R: PartialOrd> PartialOrd<Message<D, T, R>> for Message<D, T, R>[src]

impl<D, T, R> Serialize for Message<D, T, R> where
    D: Serialize,
    T: Serialize,
    R: Serialize
[src]

impl<D, T, R> StructuralEq for Message<D, T, R>[src]

impl<D, T, R> StructuralPartialEq for Message<D, T, R>[src]

Auto Trait Implementations

impl<D, T, R> RefUnwindSafe for Message<D, T, R> where
    D: RefUnwindSafe,
    R: RefUnwindSafe,
    T: RefUnwindSafe

impl<D, T, R> Send for Message<D, T, R> where
    D: Send,
    R: Send,
    T: Send

impl<D, T, R> Sync for Message<D, T, R> where
    D: Sync,
    R: Sync,
    T: Sync

impl<D, T, R> Unpin for Message<D, T, R> where
    D: Unpin,
    R: Unpin,
    T: Unpin

impl<D, T, R> UnwindSafe for Message<D, T, R> where
    D: UnwindSafe,
    R: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Data for T where
    T: Ord + Debug + Data
[src]

impl<T> Data for T where
    T: 'static + Send + Sync + Any + Abomonation

impl<T> Data for T where
    T: 'static + Clone
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> ExchangeData for T where
    T: Ord + Debug + ExchangeData
[src]

impl<T> ExchangeData for T where
    T: Data + Data, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ProgressEventTimestamp for T where
    T: Data + Any + Debug
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.