Struct timely::communication::Message

source ·
pub struct Message<T> { /* private fields */ }
Expand description

A wrapped message which may be either typed or binary data.

Implementations§

source§

impl<T> Message<T>

source

pub fn from_typed(typed: T) -> Message<T>

Wrap a typed item as a message.

source

pub fn from_arc(typed: Arc<T>) -> Message<T>

Wrap a shared typed item as a message.

source

pub fn if_typed(self) -> Option<T>

Destructures and returns any typed data.

source

pub fn if_mut(&mut self) -> Option<&mut T>

Returns a mutable reference, if typed.

source

pub fn as_ref_or_mut(&mut self) -> RefOrMut<'_, T>

Returns an immutable or mutable typed reference.

This method returns a mutable reference if the underlying data are typed Rust instances, which admit mutation, and it returns an immutable reference if the data are serialized binary data.

source§

impl<T> Message<T>
where T: Data,

source

pub fn from_bytes(bytes: Bytes) -> Message<T>

Wrap bytes as a message.

source

pub fn length_in_bytes(&self) -> usize

The number of bytes required to serialize the data.

source

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

Writes the binary representation into writer.

source§

impl<T> Message<T>
where T: Clone,

source

pub fn into_typed(self) -> T

Produces a typed instance of the wrapped element.

source

pub fn as_mut(&mut self) -> &mut T

Ensures the message is typed data and returns a mutable reference to it.

Trait Implementations§

source§

impl<T> Deref for Message<T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &<Message<T> as Deref>::Target

Dereferences the value.
source§

impl<T, C: Container, P: Pull<Bundle<T, C>>> Pull<Message<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> Pull<Message<T>> for Puller<T>
where T: Data,

source§

fn pull(&mut self) -> &mut Option<Message<T>>

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> Pull<Message<T>> for PullerInner<T>
where T: Data,

source§

fn pull(&mut self) -> &mut Option<Message<T>>

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<Message<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<Message<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<Message<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<Message<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.
source§

impl<T, P> Push<Message<T>> for Pusher<T, P>
where T: Data, P: BytesPush,

source§

fn push(&mut self, element: &mut Option<Message<T>>)

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 Message<T>
where T: Freeze,

§

impl<T> !RefUnwindSafe for Message<T>

§

impl<T> Send for Message<T>
where T: Send + Sync,

§

impl<T> !Sync for Message<T>

§

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

§

impl<T> !UnwindSafe for Message<T>

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<R, O, T> CopyOnto<ConsecutiveOffsetPairs<R, O>> for T
where R: Region<Index = (usize, usize)>, O: OffsetContainer<usize>, T: CopyOnto<R>,

source§

fn copy_onto( self, target: &mut ConsecutiveOffsetPairs<R, O> ) -> <ConsecutiveOffsetPairs<R, O> as Region>::Index

Copy self into the target container, returning an index that allows to look up the corresponding read item.
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<R, T> PushInto<FlatStack<R>> for T
where R: Region + Clone + 'static, T: CopyOnto<R>,

source§

fn push_into(self, target: &mut FlatStack<R>)

Push self into the target container.
source§

impl<T> PushInto<Vec<T>> for T

source§

fn push_into(self, target: &mut Vec<T>)

Push self into the target container.
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.