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

Required Methods§

source

fn error(&self) -> Cow<'_, str>

source

fn error_description(&self) -> Cow<'_, str>

Implementors§