pub trait IntoActorId {
// Required method
fn into_actor_id(self) -> ActorId;
}Expand description
Trait allowing the conversion of a type into ActorId, by consuming the input
Required Methods§
fn into_actor_id(self) -> ActorId
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".