pub trait AnyClear: Any + Send + Sync { // Required method fn clear(&mut self); }
A trait to support calling clear on the type erased trait object.
clear