pub struct CalendarInfo {
pub identifier: String,
pub title: String,
pub source: Option<String>,
pub allows_modifications: bool,
}Expand description
Represents a calendar (reminder list)
Fields§
§identifier: StringUnique identifier
title: StringTitle of the calendar
source: Option<String>Source name (e.g., iCloud, Local)
allows_modifications: boolWhether content can be modified
Trait Implementations§
Source§impl Clone for CalendarInfo
impl Clone for CalendarInfo
Source§fn clone(&self) -> CalendarInfo
fn clone(&self) -> CalendarInfo
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 moreAuto Trait Implementations§
impl Freeze for CalendarInfo
impl RefUnwindSafe for CalendarInfo
impl Send for CalendarInfo
impl Sync for CalendarInfo
impl Unpin for CalendarInfo
impl UnwindSafe for CalendarInfo
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