pub trait Error {
// Required methods
fn code(&self) -> Option<ErrorCode>;
fn description(&self) -> &'static str;
fn source(&self) -> &'static str;
fn cstr_description(&self) -> *const u8;
fn cstr_source(&self) -> *const u8;
}