pub type BoxedObserver<T, Error = ()> = Box<dyn AbstractObserver<T, Error>>;
The BoxedObserver type represents an abstract observer into a box.
BoxedObserver
pub struct BoxedObserver<T, Error = ()>(/* private fields */);