pub struct CalendarObjectView {
pub co_id: u64,
pub cal_id: u64,
pub uid: Box<str>,
pub etag: Box<str>,
pub extracted: CalendarObjectExtracted,
pub created_at: Timestamp,
pub updated_at: Timestamp,
}Expand description
Calendar object summary without the iCalendar blob — for list endpoints.
Fields§
§co_id: u64§cal_id: u64§uid: Box<str>§etag: Box<str>§extracted: CalendarObjectExtracted§created_at: Timestamp§updated_at: TimestampTrait Implementations§
Source§impl Clone for CalendarObjectView
impl Clone for CalendarObjectView
Source§fn clone(&self) -> CalendarObjectView
fn clone(&self) -> CalendarObjectView
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 moreAuto Trait Implementations§
impl Freeze for CalendarObjectView
impl RefUnwindSafe for CalendarObjectView
impl Send for CalendarObjectView
impl Sync for CalendarObjectView
impl Unpin for CalendarObjectView
impl UnsafeUnpin for CalendarObjectView
impl UnwindSafe for CalendarObjectView
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