11 lines
189 B
Rust
11 lines
189 B
Rust
// error
|
|
#[derive(thiserror::Error)]
|
|
// the rest
|
|
#[derive(Debug)]
|
|
pub enum Error {
|
|
#[error("Failed to hash value")]
|
|
Hash,
|
|
|
|
#[error("Failed to parse hashed value")]
|
|
Parse,
|
|
}
|