pub trait GenericNotification:
Encode
+ Decode
+ Debug
+ Send
+ Sync
+ 'static {
const SUBJECT: &'static str;
}
Expand description
Generic one-off notification
Required Associated Constants§
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.