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