Struct gsuite_api::CalendarEvents [−][src]
pub struct CalendarEvents {
pub next_page_token: String,
pub next_sync_token: String,
pub kind: String,
pub etag: String,
pub trigger_event: String,
pub items: Vec<CalendarEvent>,
}Expand description
A list of calendar events. FROM: https://developers.google.com/calendar/v3/reference/events/list
Fields
next_page_token: StringToken used to access next page of this result.
next_sync_token: StringToken used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case nextPageToken is provided.
kind: StringKind of resource this is.
etag: StringETag of the resource.
trigger_event: StringEvent that triggered this response (only used in case of Push Response)
items: Vec<CalendarEvent>List of group objects.
Trait Implementations
Returns the “default value” for a type. Read more
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 RefUnwindSafe for CalendarEventsimpl Send for CalendarEventsimpl Sync for CalendarEventsimpl Unpin for CalendarEventsimpl UnwindSafe for CalendarEventsBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
pub fn vzip(self) -> V