onion_vault_cli 0.0.3

OnionVault CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// #[macro_export]
// macro_rules! impl_display_for_enum {
//     ($enum_name:ident {
//         $($variant:ident => $str:expr,)*
//     }) => {
//         impl fmt::Display for $enum_name {
//             fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
//                 match self {
//                     $($enum_name::$variant => write!(f, "{}", $str),)*
//                 }
//             }
//         }
//     };
// }