pub type ActorId = Cow<'static, str>;
Actor id type for the actor registry.
pub enum ActorId { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.