quick_error! {
#[derive(Debug)]
pub enum Error {
InvalidFormat {
description("invalid key format")
}
UnsupportedType(typ: String) {
description("unsupported key type")
display("unsupported key type {:?}", typ)
}
Encrypted {
description("key was encrypted")
}
#[doc(hidden)]
__Nonexhaustive
}
}