zksync_error/
documentation.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// AUTOGENERATED BASED ON A SET OF JSON FILES, DO NOT EDIT MANUALLY
//
use lazy_static::lazy_static;
use zksync_error_description::ErrorHierarchy;
lazy_static! {
    pub static ref model: ErrorHierarchy = get_model();
}
fn get_model() -> ErrorHierarchy {
    zksync_error_description::ErrorHierarchy::deserialize(include_str!(
        "../resources/error-model-dump.json"
    ))
}
#[derive(Debug)]
pub enum DocumentationError {
    IncompleteModel(String),
}
impl std::fmt::Display for DocumentationError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_fmt(format_args!("{self:#?}"))
    }
}
impl std::error::Error for DocumentationError {}
pub trait Documented {
    type Documentation;
    fn get_documentation(&self) -> Result<Option<Self::Documentation>, DocumentationError>;
}