pub struct GmailMessageId {
pub id: String,
pub thread_id: Option<String>,
}Expand description
A lightweight Gmail message resource carrying only its ids.
Fields§
§id: StringThe immutable id of the message.
thread_id: Option<String>The id of the thread the message belongs to.
Trait Implementations§
Source§impl Clone for GmailMessageId
impl Clone for GmailMessageId
Source§fn clone(&self) -> GmailMessageId
fn clone(&self) -> GmailMessageId
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 GmailMessageId
impl Debug for GmailMessageId
Source§impl Default for GmailMessageId
impl Default for GmailMessageId
Source§fn default() -> GmailMessageId
fn default() -> GmailMessageId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GmailMessageId
impl<'de> Deserialize<'de> for GmailMessageId
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 GmailMessageId
Source§impl JsonSchema for GmailMessageId
impl JsonSchema for GmailMessageId
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for GmailMessageId
impl PartialEq for GmailMessageId
Source§impl Serialize for GmailMessageId
impl Serialize for GmailMessageId
impl StructuralPartialEq for GmailMessageId
Auto Trait Implementations§
impl Freeze for GmailMessageId
impl RefUnwindSafe for GmailMessageId
impl Send for GmailMessageId
impl Sync for GmailMessageId
impl Unpin for GmailMessageId
impl UnsafeUnpin for GmailMessageId
impl UnwindSafe for GmailMessageId
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