pub trait Postbox<P>: Errors {
    fn post(
        &mut self,
        payload: &P,
        wait: Option<Duration>
    ) -> Result<bool, Self::Error>; }

Required methods

Implementations on Foreign Types

Implementors