Skip to main content

rill_core/queues/
command.rs

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