1use std::fmt; 2 3/// Base trait for all commands sent via actor mailboxes. 4pub trait Command: Send + 'static + fmt::Debug {}