···101101102102/// Some kind of [debouncing].
103103///
104104-/// Listens to events over an [`mpsc::Receiver<Poll<T>>`] and [notifies][Notify]
105105-/// subscribers of [`Poll::Ready`], but only if they are not "immediately"
106106-/// followed by more [`Poll::Pending`], the timing of which is determined by a
104104+/// Listens to events over an [`mpsc::Receiver<DebounceUpdate<T>>`] and [notifies][Notify]
105105+/// subscribers of [`DebounceUpdate::Ready`], but only if they are not "immediately"
106106+/// followed by more [`DebounceUpdate::Reset`], the timing of which is determined by a
107107/// configured [buffering time][Debouncing::debounce].
108108///
109109/// [debouncing]: https://developer.mozilla.org/en-US/docs/Glossary/Debounce
+1
release-plz.toml
···11[workspace]
22git_release_name = "{{ package }} {{ version }}"
33+git_tag_name = "{{ package }}-v{{ version }}"
34release_always = true
4556[[package]]