Struct timely_communication::message::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) -> Self

Wrap a typed item as a message.

source

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

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: Data> Message<T>

source

pub fn from_bytes(bytes: Bytes) -> Self

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: Write>(&self, writer: &mut W)

Writes the binary representation into writer.

source§

impl<T: Clone> Message<T>

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) -> &Self::Target

Dereferences the value.
source§

impl<T: Data> Pull<Message<T>> for Puller<T>

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

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: Data, P: BytesPush> Push<Message<T>> for Pusher<T, P>

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<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.