pub type JsPrototype = Option<JsObject>;
A type alias for an object prototype.
A None values means that the prototype is the null value.
None
null
pub enum JsPrototype { None, Some(JsObject), }
No value.
Some value of type T.
T