pub struct CalendarProperties {
pub description: Option<String>,
pub timezone: Option<String>,
pub supported_components: Vec<CalendarComponentType>,
pub max_resource_size: Option<u64>,
pub color: Option<String>,
pub display_name: Option<String>,
}Available on crate feature
caldav only.Expand description
CalDAV calendar collection properties
Fields§
§description: Option<String>§timezone: Option<String>§supported_components: Vec<CalendarComponentType>§max_resource_size: Option<u64>§color: Option<String>§display_name: Option<String>Trait Implementations§
Source§impl Clone for CalendarProperties
impl Clone for CalendarProperties
Source§fn clone(&self) -> CalendarProperties
fn clone(&self) -> CalendarProperties
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 CalendarProperties
impl Debug for CalendarProperties
Auto Trait Implementations§
impl Freeze for CalendarProperties
impl RefUnwindSafe for CalendarProperties
impl Send for CalendarProperties
impl Sync for CalendarProperties
impl Unpin for CalendarProperties
impl UnwindSafe for CalendarProperties
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