Skip to main content

asimov_id/
id_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, Hash, Ord, PartialEq, PartialOrd)]
6pub enum IdError {
7    EmptyInput,
8    InvalidLength(usize),
9    InvalidFirstChar(char),
10    InvalidChar(char),
11}