pub trait Blocker: Debug + Named { // Required method fn block(&self, dur: Duration); }
A trait for blocking current thread.
Block current thread for a while.