pub trait JsValueErrorTrait {
// Required method
fn message(&self) -> String;
}Expand description
Extension trait for reading the message property from a JsValue
that represents a JavaScript error.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".