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;
}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;
}