pub trait MetadataClientError: Debug + Display {
    fn not_found(&self) -> bool;
    fn patch_error() -> Self;

    fn not_founded(&self) -> bool { ... }
}
Expand description

trait for metadata client

Required Methods

is not found

Provided Methods

👎Deprecated since 3.3.0: This method is no longer used. Use not_found instead

is not founded

Implementors