pub trait PostExt {
// Required method
fn post(&self, message: impl Post) -> Result<(), JsValue>;
}Expand description
Convenience trait for something that can have messages posted to it, including transferables.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.