Skip to main content

Notification

Trait Notification 

Source
pub trait Notification {
    // Required method
    fn name() -> u16;
}

Required Methods§

Source

fn name() -> u16

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T> Notification for &T
where T: Notification,

Implementors§