pub struct GmailSendOutput<T> {
pub response: T,
pub keep_alive: bool,
}Expand description
Terminal value of a successful Gmail exchange.
Fields§
§response: TThe parsed 2xx response body.
keep_alive: boolWhether the server allows reusing the TCP/TLS connection.
Trait Implementations§
Source§impl<T: Clone> Clone for GmailSendOutput<T>
impl<T: Clone> Clone for GmailSendOutput<T>
Source§fn clone(&self) -> GmailSendOutput<T>
fn clone(&self) -> GmailSendOutput<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> Freeze for GmailSendOutput<T>where
T: Freeze,
impl<T> RefUnwindSafe for GmailSendOutput<T>where
T: RefUnwindSafe,
impl<T> Send for GmailSendOutput<T>where
T: Send,
impl<T> Sync for GmailSendOutput<T>where
T: Sync,
impl<T> Unpin for GmailSendOutput<T>where
T: Unpin,
impl<T> UnsafeUnpin for GmailSendOutput<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for GmailSendOutput<T>where
T: UnwindSafe,
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