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