[][src]Struct kompact::prelude::DispatchingPath

pub struct DispatchingPath<'a, 'b> { /* fields omitted */ }

A temporary combination of an ActorPath and something that can dispatch stuff

This can be used when you want to use a different actor path than the one of the current component for a tell but still need to use the component's dispatcher for the message. This is useful for forwarding components, for example, when trying to preserve the original sender.

See also using_dispatcher.

Trait Implementations

impl<'a, 'b> ActorSource for DispatchingPath<'a, 'b>[src]

impl<'a, 'b> Dispatching for DispatchingPath<'a, 'b>[src]

Auto Trait Implementations

impl<'a, 'b> !RefUnwindSafe for DispatchingPath<'a, 'b>

impl<'a, 'b> !Send for DispatchingPath<'a, 'b>

impl<'a, 'b> !Sync for DispatchingPath<'a, 'b>

impl<'a, 'b> Unpin for DispatchingPath<'a, 'b>

impl<'a, 'b> !UnwindSafe for DispatchingPath<'a, 'b>

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