pub type IPositionOption = Option<IPosition>;
pub enum IPositionOption { None, Some(IPosition), }
No value.
Some value of type T.
T