ssi_status/impl/mod.rs
1pub mod any;
2pub mod bitstring_status_list;
3pub mod bitstring_status_list_20240406;
4pub mod token_status_list;
5
6pub use flate2::Compression;
7
8/// Status list overflow.
9#[derive(Debug, PartialEq, thiserror::Error)]
10pub enum Overflow {
11 /// Value is too large.
12 #[error("value `{0}` is too large")]
13 Value(u8),
14
15 /// Index is out of bounds.
16 #[error("index `{0}` is out of bounds")]
17 Index(usize),
18}