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