pub struct GmailPopSettings {
pub access_window: Option<GmailPopAccessWindow>,
pub disposition: Option<GmailDisposition>,
}Expand description
POP access settings of a Gmail account.
Fields§
§access_window: Option<GmailPopAccessWindow>Range of messages accessible via POP.
disposition: Option<GmailDisposition>Action applied to messages after they have been fetched via POP.
Trait Implementations§
Source§impl Clone for GmailPopSettings
impl Clone for GmailPopSettings
Source§fn clone(&self) -> GmailPopSettings
fn clone(&self) -> GmailPopSettings
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 moreSource§impl Debug for GmailPopSettings
impl Debug for GmailPopSettings
Source§impl Default for GmailPopSettings
impl Default for GmailPopSettings
Source§fn default() -> GmailPopSettings
fn default() -> GmailPopSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GmailPopSettings
impl<'de> Deserialize<'de> for GmailPopSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GmailPopSettings
Source§impl PartialEq for GmailPopSettings
impl PartialEq for GmailPopSettings
Source§impl Serialize for GmailPopSettings
impl Serialize for GmailPopSettings
impl StructuralPartialEq for GmailPopSettings
Auto Trait Implementations§
impl Freeze for GmailPopSettings
impl RefUnwindSafe for GmailPopSettings
impl Send for GmailPopSettings
impl Sync for GmailPopSettings
impl Unpin for GmailPopSettings
impl UnsafeUnpin for GmailPopSettings
impl UnwindSafe for GmailPopSettings
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