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