Skip to main content

ClientError

Trait ClientError 

Source
pub trait ClientError {
    // Required methods
    fn is_duplicate(&self) -> bool;
    fn is_diamond_problem(&self) -> bool;
    fn is_big_dependency(&self) -> bool;
    fn is_load_related_error(&self) -> bool;
}

Required Methods§

Implementors§

Source§

impl<T> ClientError for T
where T: ToString,