pub trait OnNewSession<N> {
// Required method
fn on_new_session(notification: &SessionChangeNotification<N>);
}
Expand description
Inform something about a new session.
Required Methods§
sourcefn on_new_session(notification: &SessionChangeNotification<N>)
fn on_new_session(notification: &SessionChangeNotification<N>)
A new session was started.
Object Safety§
This trait is not object safe.