Struct riker::actor::ActorUri[][src]

pub struct ActorUri {
    pub uid: ActorId,
    pub name: Arc<String>,
    pub path: Arc<String>,
    pub host: Arc<String>,
}

An ActorUri represents the location of an actor, including the path and actor system host.

Note: host is currently unused but will be utilized when networking and clustering are introduced.

Fields

Methods

impl ActorUri
[src]

Trait Implementations

impl Clone for ActorUri
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ActorUri
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ActorUri
[src]

impl Hash for ActorUri
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for ActorUri
[src]

Formats the value using the given formatter. Read more

impl Debug for ActorUri
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ActorUri

impl Sync for ActorUri