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