pub struct GmailThreadsListResponse {
pub threads: Vec<GmailThreadSummary>,
pub next_page_token: Option<String>,
pub result_size_estimate: Option<u64>,
}Expand description
Gmail REST thread listing response (one page of thread summaries).
Fields§
§threads: Vec<GmailThreadSummary>Thread summaries of the current page.
next_page_token: Option<String>Token to fetch the next page, absent on the last page.
result_size_estimate: Option<u64>Estimated total number of results.
Trait Implementations§
Source§impl Clone for GmailThreadsListResponse
impl Clone for GmailThreadsListResponse
Source§fn clone(&self) -> GmailThreadsListResponse
fn clone(&self) -> GmailThreadsListResponse
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 GmailThreadsListResponse
impl Debug for GmailThreadsListResponse
Source§impl Default for GmailThreadsListResponse
impl Default for GmailThreadsListResponse
Source§fn default() -> GmailThreadsListResponse
fn default() -> GmailThreadsListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GmailThreadsListResponse
impl<'de> Deserialize<'de> for GmailThreadsListResponse
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 GmailThreadsListResponse
Source§impl PartialEq for GmailThreadsListResponse
impl PartialEq for GmailThreadsListResponse
Source§impl Serialize for GmailThreadsListResponse
impl Serialize for GmailThreadsListResponse
impl StructuralPartialEq for GmailThreadsListResponse
Auto Trait Implementations§
impl Freeze for GmailThreadsListResponse
impl RefUnwindSafe for GmailThreadsListResponse
impl Send for GmailThreadsListResponse
impl Sync for GmailThreadsListResponse
impl Unpin for GmailThreadsListResponse
impl UnsafeUnpin for GmailThreadsListResponse
impl UnwindSafe for GmailThreadsListResponse
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