[][src]Struct kompact::messaging::DeserialisedMessage

pub struct DeserialisedMessage<T> {
    pub sender: ActorPath,
    pub receiver: ActorPath,
    pub content: T,
}

A deserialised variant of NetMessage

Can be obtained via the try_into_deserialised function.

Fields

sender: ActorPath

The sender of the message

More concretely, this is the actor path that was supplied as a source by the original sender.

receiver: ActorPath

The receiver of the message

More concretely, this is the actor path that was used as a destination for the message. In particular, of the message was sent to a named path for the current component, instead of the unique path, then this will be the named path.

content: T

The actual deserialised content of the message

Methods

impl<T> DeserialisedMessage<T>[src]

pub fn with(sender: ActorPath, receiver: ActorPath, content: T) -> Self[src]

Create a new deserialised message

Trait Implementations

impl<T: Debug> Debug for DeserialisedMessage<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for DeserialisedMessage<T> where
    T: RefUnwindSafe

impl<T> Send for DeserialisedMessage<T> where
    T: Send

impl<T> Sync for DeserialisedMessage<T> where
    T: Sync

impl<T> Unpin for DeserialisedMessage<T> where
    T: Unpin

impl<T> UnwindSafe for DeserialisedMessage<T> where
    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> From<T> for T[src]

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,