pub struct GmailHistoryResponse {
pub history: Option<Vec<GmailHistoryRecord>>,
pub next_page_token: Option<String>,
pub history_id: Option<String>,
}Fields§
§history: Option<Vec<GmailHistoryRecord>>§next_page_token: Option<String>§history_id: Option<String>Trait Implementations§
Source§impl Debug for GmailHistoryResponse
impl Debug for GmailHistoryResponse
Source§impl<'de> Deserialize<'de> for GmailHistoryResponse
impl<'de> Deserialize<'de> for GmailHistoryResponse
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
Auto Trait Implementations§
impl Freeze for GmailHistoryResponse
impl RefUnwindSafe for GmailHistoryResponse
impl Send for GmailHistoryResponse
impl Sync for GmailHistoryResponse
impl Unpin for GmailHistoryResponse
impl UnsafeUnpin for GmailHistoryResponse
impl UnwindSafe for GmailHistoryResponse
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