pub trait GenericNotification:
    Encode
    + Decode
    + Debug
    + Send
    + Sync
    + 'static {
    const SUBJECT: &'static str;
}
Expand description

Generic one-off notification

Required Associated Constants§

source

const SUBJECT: &'static str

Notification subject with optional * in place of application instance receiving the request

Object Safety§

This trait is not object safe.

Implementors§