[][src]Enum arcon::prelude::prelude::ActorPath

#[repr(u8)]
pub enum ActorPath {
    Unique(UniquePath),
    Named(NamedPath),
}

Variants

Unique(UniquePath)Named(NamedPath)

Methods

impl ActorPath[src]

pub fn tell<S, B>(&self, m: B, from: &S) where
    B: Into<Box<dyn Serialisable + 'static>>,
    S: ActorSource
[src]

Trait Implementations

impl Eq for ActorPath[src]

impl FromStr for ActorPath[src]

type Err = PathParseError

The associated error which can be returned from parsing.

impl Serialisable for ActorPath[src]

fn serialise(&self, buf: &mut dyn BufMut) -> Result<(), SerError>[src]

Serializes a Unique or Named actor path.

See deserialise_msg in kompact::serialisation for matching deserialisation.

impl PartialEq<ActorPath> for ActorPath[src]

impl Display for ActorPath[src]

impl TryFrom<String> for ActorPath[src]

type Error = PathParseError

The type returned in the event of a conversion error.

impl Debug for ActorPath[src]

impl Clone for ActorPath[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl From<(SystemPath, Uuid)> for ActorPath[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Deserialisable<T> for T[src]

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