Skip to main content

asimov_id/
key_error.rs

1// This is free and unencumbered software released into the public domain.
2
3use derive_more::Display;
4
5#[derive(Clone, Debug, Display, Eq, PartialEq)]
6pub enum KeyError {
7    EmptyInput,
8    InvalidLength,
9    InvalidPrefix,
10    InvalidEncoding(bs58::decode::Error),
11}