pub enum JmapCalendarEventSortProperty {
Start,
Uid,
RecurrenceId,
Created,
Updated,
}Expand description
Sort property for CalendarEvent/query (draft-ietf-jmap-calendars).
Variants§
Start
The event’s start, in the query’s time zone.
Uid
The JSCalendar uid of the event.
RecurrenceId
The recurrence id of the occurrence, which orders the instances of a single series.
Created
The created date on the event.
Updated
The updated date on the event.
Trait Implementations§
Source§impl Clone for JmapCalendarEventSortProperty
impl Clone for JmapCalendarEventSortProperty
Source§fn clone(&self) -> JmapCalendarEventSortProperty
fn clone(&self) -> JmapCalendarEventSortProperty
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 moreimpl Eq for JmapCalendarEventSortProperty
impl StructuralPartialEq for JmapCalendarEventSortProperty
Auto Trait Implementations§
impl Freeze for JmapCalendarEventSortProperty
impl RefUnwindSafe for JmapCalendarEventSortProperty
impl Send for JmapCalendarEventSortProperty
impl Sync for JmapCalendarEventSortProperty
impl Unpin for JmapCalendarEventSortProperty
impl UnsafeUnpin for JmapCalendarEventSortProperty
impl UnwindSafe for JmapCalendarEventSortProperty
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