pub trait ValicoError: Error + Send + Debug + GetTypeId {
    fn get_code(&self) -> &str;
    fn get_path(&self) -> &str;
    fn get_title(&self) -> &str;

    fn get_detail(&self) -> Option<&str> { ... }
}

Required Methods

Provided Methods

Implementations

Is this Error object of type E?

If this error is E, downcast this error to E, by reference.

Trait Implementations

Serialize this value into the given Serde serializer. Read more

Implementors