pub struct PaginatedCalendarEventList {
pub has_next: Option<bool>,
pub results: Option<Vec<CalendarEvent>>,
pub total_count: Option<i32>,
}Expand description
PaginatedCalendarEventList : An offset-based list of CalendarEvents
Fields§
§has_next: Option<bool>Whether there are more results after this page.
results: Option<Vec<CalendarEvent>>§total_count: Option<i32>The total number of results that the query would return if there were no pagination.
Implementations§
Source§impl PaginatedCalendarEventList
impl PaginatedCalendarEventList
Sourcepub fn new() -> PaginatedCalendarEventList
pub fn new() -> PaginatedCalendarEventList
An offset-based list of CalendarEvents
Trait Implementations§
Source§impl Clone for PaginatedCalendarEventList
impl Clone for PaginatedCalendarEventList
Source§fn clone(&self) -> PaginatedCalendarEventList
fn clone(&self) -> PaginatedCalendarEventList
Returns a duplicate of the value. Read more
1.0.0 · 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 PaginatedCalendarEventList
impl Debug for PaginatedCalendarEventList
Source§impl Default for PaginatedCalendarEventList
impl Default for PaginatedCalendarEventList
Source§fn default() -> PaginatedCalendarEventList
fn default() -> PaginatedCalendarEventList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedCalendarEventList
impl<'de> Deserialize<'de> for PaginatedCalendarEventList
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 StructuralPartialEq for PaginatedCalendarEventList
Auto Trait Implementations§
impl Freeze for PaginatedCalendarEventList
impl RefUnwindSafe for PaginatedCalendarEventList
impl Send for PaginatedCalendarEventList
impl Sync for PaginatedCalendarEventList
impl Unpin for PaginatedCalendarEventList
impl UnwindSafe for PaginatedCalendarEventList
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