usecrate::authenticated::Mailbox;usecommonware_utils::channel::fallible::AsyncFallibleExt;/// Messages that can be sent to the peer [super::Actor].
#[derive(Clone, Debug)]pubenumMessage{/// Kill the peer actor.
Kill,}implMailbox<Message>{pub async fnkill(&mutself){self.0.send_lossy(Message::Kill).await;}}