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
Recipient
An error caused by a specific recipient.
Identity
An error caused by a specific identity.
Internal
Fields
message: StringThe error message.
A general error that occured inside the state machine.
