1#[allow(missing_docs)] 2#[derive(Debug, thiserror::Error)] 3pub enum Error { 4 #[error("Cannot represent timetamp as Unix time: {0:?}")] 5 WrongTimestamp(crate::message::Timestamp), 6}