pub trait ToJs<JsType>where
Self: UseInJsCode,
JsType: ?Sized,{ }
Expand description
Values that can be serialized to JS code satisfying certain types.
For example, ToJs<JsNumber>
means serializable to the same type that
JsNumber
serializes to.