pub trait SyncReader<T>: Send { // Required method fn read(self: Box<Self>) -> T; }
Allows to create sync reader.
Read synchronously.