fedimint_meta_client/
db.rs

1
2
3
4
5
6
7
8
9
10
11
use strum_macros::EnumIter;

// #[repr(u8)]
#[derive(Clone, Debug, EnumIter)]
pub enum DbKeyPrefix {}

impl std::fmt::Display for DbKeyPrefix {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        write!(f, "{self:?}")
    }
}