pub enum CalDavReportType {
CalendarQuery(CalendarQuery),
CalendarMultiget {
hrefs: Vec<String>,
},
FreeBusyQuery {
time_range: TimeRange,
},
}Available on crate feature
caldav only.Expand description
CalDAV REPORT request types
Variants§
Trait Implementations§
Source§impl Clone for CalDavReportType
impl Clone for CalDavReportType
Source§fn clone(&self) -> CalDavReportType
fn clone(&self) -> CalDavReportType
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 CalDavReportType
impl RefUnwindSafe for CalDavReportType
impl Send for CalDavReportType
impl Sync for CalDavReportType
impl Unpin for CalDavReportType
impl UnwindSafe for CalDavReportType
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