pub trait Unsubscribe {
    // Required method
    fn unsubscribe(&mut self, subs_id: SeqID);
}Expand description
Unsubscribe: unregisters a previously created subscription.
Required Methods§
Sourcefn unsubscribe(&mut self, subs_id: SeqID)
 
fn unsubscribe(&mut self, subs_id: SeqID)
Remove all registrations of the subscriber with ID subs_id.