pub type OptionBoxAnySync = Option<BoxAnySync>;
pub enum OptionBoxAnySync { None, Some(Box<dyn Any + Sync>), }
No value.
Some value of type T.
T