//! Events emitted by a [`struct@super::TimePicker`].
//!
//! Implement [`TimePickerEvents`] on a window (or other parent) to react when
//! the chosen time changes.
use TimePicker;
use crate::;
use NaiveTime;
/// Events from a [`struct@super::TimePicker`].
///
/// Implement this on a window to react when the chosen time changes.
/// The default method returns [`EventProcessStatus::Ignored`].
pub