pub enum GmailInternalDateSource {
ReceivedTime,
DateHeader,
}Expand description
Source of the internal date when importing or inserting a message
(internalDateSource query parameter).
Variants§
ReceivedTime
The internal date is the time the message was received.
DateHeader
The internal date comes from the Date header of the message.
Trait Implementations§
Source§impl Clone for GmailInternalDateSource
impl Clone for GmailInternalDateSource
Source§fn clone(&self) -> GmailInternalDateSource
fn clone(&self) -> GmailInternalDateSource
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 moreimpl Copy for GmailInternalDateSource
Source§impl Debug for GmailInternalDateSource
impl Debug for GmailInternalDateSource
Source§impl<'de> Deserialize<'de> for GmailInternalDateSource
impl<'de> Deserialize<'de> for GmailInternalDateSource
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 GmailInternalDateSource
Source§impl PartialEq for GmailInternalDateSource
impl PartialEq for GmailInternalDateSource
Source§impl Serialize for GmailInternalDateSource
impl Serialize for GmailInternalDateSource
impl StructuralPartialEq for GmailInternalDateSource
Auto Trait Implementations§
impl Freeze for GmailInternalDateSource
impl RefUnwindSafe for GmailInternalDateSource
impl Send for GmailInternalDateSource
impl Sync for GmailInternalDateSource
impl Unpin for GmailInternalDateSource
impl UnsafeUnpin for GmailInternalDateSource
impl UnwindSafe for GmailInternalDateSource
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