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