1#[derive(Debug, thiserror::Error)] 2/// The systemd-duration error type. 3pub enum Error { 4 #[error("Duration overflowed")] 5 DurationOverflow, 6 7 #[error(transparent)] 8 ParserError(#[from] nom::error::Error<String>), 9}