Enum age_plugin::recipient::Error [−][src]
pub enum Error {
Recipient {
index: usize,
message: String,
},
Identity {
index: usize,
message: String,
},
Internal {
message: String,
},
}Expand description
The kinds of errors that can occur within the recipient plugin state machine.
Variants
An error caused by a specific recipient.
An error caused by a specific identity.
A general error that occured inside the state machine.
Fields of Internal
message: StringThe error message.