[][src]Trait thruster::errors::ErrorSet

pub trait ErrorSet<C> {
    fn parsing_error(context: C, error: &str) -> ThrusterError<C>;
fn generic_error(context: C) -> ThrusterError<C>;
fn unauthorized_error(context: C) -> ThrusterError<C>;
fn not_found_error(context: C) -> ThrusterError<C>; }

Required methods

fn parsing_error(context: C, error: &str) -> ThrusterError<C>

fn generic_error(context: C) -> ThrusterError<C>

fn unauthorized_error(context: C) -> ThrusterError<C>

fn not_found_error(context: C) -> ThrusterError<C>

Loading content...

Implementors

impl<C: Context> ErrorSet<C> for ThrusterError<C>[src]

Loading content...