Struct timely::Message

source ·
pub struct Message<T> {
    pub payload: T,
}
Expand description

A wrapper that indicates a serialization/deserialization strategy. A wrapper that indicates bincode as the serialization/deserialization strategy.

Fields§

§payload: T

Bincode contents.

Implementations§

source§

impl<T> Bincode<T>

source

pub fn from_typed(typed: T) -> Self

Wrap a typed item as a Bincode.

Trait Implementations§

source§

impl<T: Data> Bytesable for Bincode<T>

source§

fn from_bytes(bytes: Bytes) -> Self

Wrap bytes as Self.
source§

fn length_in_bytes(&self) -> usize

The number of bytes required to serialize the data.
source§

fn into_bytes<W: Write>(&self, writer: &mut W)

Writes the binary representation into writer.
source§

impl<T> Deref for Bincode<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T, C: Container, P: Pull<Bundle<T, C>>> Pull<Bincode<Message<T, C>>> for LogPuller<T, C, P>

source§

fn pull(&mut self) -> &mut Option<Bundle<T, C>>

Pulls an element and provides the opportunity to take ownership. Read more
source§

fn recv(&mut self) -> Option<T>

Takes an Option<T> and leaves None behind.
source§

impl<T: Timestamp, C: Container, P> Push<Bincode<Message<T, C>>> for Counter<T, C, P>
where P: Push<Bundle<T, C>>,

source§

fn push(&mut self, message: &mut Option<Bundle<T, C>>)

Pushes element with the opportunity to take ownership.
source§

fn send(&mut self, element: T)

Pushes element and drops any resulting resources.
source§

fn done(&mut self)

Pushes None, conventionally signalling a flush.
source§

impl<T: Eq + Data, C, P: Push<Bundle<T, C>>, H> Push<Bincode<Message<T, C>>> for Exchange<T, C, P, H>
where C: PushPartitioned + Container, for<'a> H: FnMut(&C::Item<'a>) -> u64,

source§

fn push(&mut self, message: &mut Option<Bundle<T, C>>)

Pushes element with the opportunity to take ownership.
source§

fn send(&mut self, element: T)

Pushes element and drops any resulting resources.
source§

fn done(&mut self)

Pushes None, conventionally signalling a flush.
source§

impl<T, C: Container, P: Push<Bundle<T, C>>> Push<Bincode<Message<T, C>>> for LogPusher<T, C, P>

source§

fn push(&mut self, pair: &mut Option<Bundle<T, C>>)

Pushes element with the opportunity to take ownership.
source§

fn send(&mut self, element: T)

Pushes element and drops any resulting resources.
source§

fn done(&mut self)

Pushes None, conventionally signalling a flush.
source§

impl<T: Data, C: Container> Push<Bincode<Message<T, C>>> for Tee<T, C>

source§

fn push(&mut self, message: &mut Option<Bundle<T, C>>)

Pushes element with the opportunity to take ownership.
source§

fn send(&mut self, element: T)

Pushes element and drops any resulting resources.
source§

fn done(&mut self)

Pushes None, conventionally signalling a flush.

Auto Trait Implementations§

§

impl<T> Freeze for Bincode<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Bincode<T>
where T: RefUnwindSafe,

§

impl<T> Send for Bincode<T>
where T: Send,

§

impl<T> Sync for Bincode<T>
where T: Sync,

§

impl<T> Unpin for Bincode<T>
where T: Unpin,

§

impl<T> UnwindSafe for Bincode<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Exchangeable for T
where T: Send + Any + Bytesable,