1#[derive(Debug, Clone)] 2pub struct Error(pub String); 3 4impl Error { 5 pub fn message(&self) -> &String { 6 &self.0 7 } 8}