pub trait HandlerId: Debug {
    fn unhandle(&self, state: &mut dyn State, dropping_binding: AnyBindingBase);
}
Expand description

An id of a Source handler, which can be used to unsubscribe the handler from source.

Required Methods

Implementors