pub enum Smtp2goApiError {
MissingAPIKey(String),
IncorrectAPIKeyFormat(String),
MissingRequiredField(String),
RequestError(String),
EndpointError(String),
InvalidJSON(String),
}
Variants§
MissingAPIKey(String)
IncorrectAPIKeyFormat(String)
MissingRequiredField(String)
RequestError(String)
EndpointError(String)
InvalidJSON(String)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Smtp2goApiError
impl RefUnwindSafe for Smtp2goApiError
impl Send for Smtp2goApiError
impl Sync for Smtp2goApiError
impl Unpin for Smtp2goApiError
impl UnwindSafe for Smtp2goApiError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more