fedimint_empty_client/
db.rs

1use strum_macros::EnumIter;
2
3// #[repr(u8)]
4#[derive(Clone, Debug, EnumIter)]
5pub enum DbKeyPrefix {}
6
7impl std::fmt::Display for DbKeyPrefix {
8    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
9        write!(f, "{self:?}")
10    }
11}