//! Error types for the arrivals module.
usethiserror::Error;/// Errors from interarrival-time computation and validation.
#[derive(Error, Debug)]#[non_exhaustive]pubenumArrivalsError{/// Insufficient data for the requested computation.
#[error("Insufficient data: {0}")]
InsufficientData(String),}