pub trait ActorRefProvider: Send + Sync {
// Required methods
fn root_path(&self) -> ActorPath;
fn address(&self) -> &Address;
}Expand description
Abstract over which backing runtime provides an actor ref:
local, remote, or cluster. Default is Local.