pub struct CalendarObject {
pub co_id: u64,
pub cal_id: u64,
pub uid: Box<str>,
pub etag: Box<str>,
pub ical: Box<str>,
pub extracted: CalendarObjectExtracted,
pub created_at: Timestamp,
pub updated_at: Timestamp,
}Expand description
Full calendar object row including the authoritative stored VCALENDAR blob.
Fields§
§co_id: u64§cal_id: u64§uid: Box<str>§etag: Box<str>§ical: Box<str>§extracted: CalendarObjectExtracted§created_at: Timestamp§updated_at: TimestampTrait Implementations§
Source§impl Clone for CalendarObject
impl Clone for CalendarObject
Source§fn clone(&self) -> CalendarObject
fn clone(&self) -> CalendarObject
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 CalendarObject
impl RefUnwindSafe for CalendarObject
impl Send for CalendarObject
impl Sync for CalendarObject
impl Unpin for CalendarObject
impl UnsafeUnpin for CalendarObject
impl UnwindSafe for CalendarObject
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