Skip to main content

ActorPathFactory

Trait ActorPathFactory 

Source
pub trait ActorPathFactory {
    // Required method
    fn actor_path(&self) -> ActorPath;
}
Expand description

A factory trait for things that have associated actor paths.

Required Methods§

Source

fn actor_path(&self) -> ActorPath

Returns the associated actor path.

Implementors§

Source§

impl ActorPathFactory for DispatchingPath<'_, '_>

Source§

impl ActorPathFactory for KompactSystem

Available on crate feature distributed only.
Source§

impl<CD> ActorPathFactory for ComponentContext<CD>

Available on crate feature distributed only.
Source§

impl<CD> ActorPathFactory for CD
where CD: ComponentTraits,

Available on crate feature distributed only.