pub trait Notification {
    type Params: DeserializeOwned + Serialize;

    const METHOD: &'static str;
}

Required Associated Types

Required Associated Constants

Implementors