pub trait Notify {
// Required method
fn notify<B: Into<Cow<'static, [u8]>>>(&mut self, _: B);
}
Expand description
Byte sequences are sent to a Notify
in response to some events
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.