pub type Cell<'a> = Option<Unit<'a>>;
A type for describing components of Node: a real element of Unit or a virtual element None.
Node
Unit
None
pub enum Cell<'a> { None, Some(Unit<'a>), }
No value.
Some value of type T.
T