fedimint_unknown_server/
db.rs

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