pub enum GmailHistoryPollError {
Send(GmailSendError),
}Expand description
Errors that can occur during the watch.
Variants§
Send(GmailSendError)
One of the underlying Gmail exchanges failed.
Trait Implementations§
Source§impl Debug for GmailHistoryPollError
impl Debug for GmailHistoryPollError
Source§impl Display for GmailHistoryPollError
impl Display for GmailHistoryPollError
Source§impl Error for GmailHistoryPollError
impl Error for GmailHistoryPollError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<GmailSendError> for GmailHistoryPollError
impl From<GmailSendError> for GmailHistoryPollError
Source§fn from(source: GmailSendError) -> Self
fn from(source: GmailSendError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GmailHistoryPollError
impl RefUnwindSafe for GmailHistoryPollError
impl Send for GmailHistoryPollError
impl Sync for GmailHistoryPollError
impl Unpin for GmailHistoryPollError
impl UnsafeUnpin for GmailHistoryPollError
impl UnwindSafe for GmailHistoryPollError
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