pub enum InnerMessage {
Message(Box<dyn Any + Send>),
Control(ControlMessage),
}Expand description
Types of message that can be sent to an actor that will be treated normally.
Variants§
Auto Trait Implementations§
impl Freeze for InnerMessage
impl !RefUnwindSafe for InnerMessage
impl Send for InnerMessage
impl !Sync for InnerMessage
impl Unpin for InnerMessage
impl !UnwindSafe for InnerMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more