pub trait ToStringValue {
type Js: AsRef<JsValue>;
// Required method
fn to_string_value(self) -> Self::Js;
}
Expand description
A value that can be represented as a JS string.
pub trait ToStringValue {
type Js: AsRef<JsValue>;
// Required method
fn to_string_value(self) -> Self::Js;
}
A value that can be represented as a JS string.