[][src]Enum kompact::messaging::DispatchData

pub enum DispatchData {
    Lazy(Box<dyn Serialisable>),
    Serialised((ChunkLease, SerId)),
}

An abstraction over lazy or eagerly serialised data sent to the dispatcher

Variants

Lazy(Box<dyn Serialisable>)

Lazily serialised variant – must still be serialised by the dispatcher or networking system

Serialised((ChunkLease, SerId))

Should be serialised and framed.

Methods

impl DispatchData[src]

pub fn ser_id(&self) -> SerId[src]

The serialisation id associated with the data

pub fn to_local(
    self,
    src: ActorPath,
    dst: ActorPath
) -> Result<NetMessage, SerError>
[src]

Try to extract a network message from this data for local delivery

This can fail, if the data can't be moved onto the heap, and serialisation also fails.

pub fn to_serialised(
    self,
    src: ActorPath,
    dst: ActorPath,
    buf: &mut BufferEncoder
) -> Result<SerialisedFrame, SerError>
[src]

Try to serialise this to data to bytes for remote delivery

Trait Implementations

impl Debug for DispatchData[src]

Auto Trait Implementations

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