pub trait ErrorResponse {
    fn error(&self) -> Cow<'_, str>;
    fn error_description(&self) -> Cow<'_, str>;
}

Required Methods§

Implementors§