usecrate::prelude::ActorMessage;/// Can be implemented by an Actor through Handler<ActorInitMessage> to be used to init an Actor
pubstructActorInitMessage{}implActorInitMessage{pubfnnew()->Self{Self{}}}/// intentionally implements `ActorMessage`, because it does NOT provide a generic `Handler<ActorInitMessage>` implementation
implActorMessage forActorInitMessage{}