pub enum EventStatus {
Tentative,
Confirmed,
Cancelled,
}
Expand description
Encodes the status of an Event
RFC 5545, Section 3.8.1.11
Variants§
Tentative
Indicates event is tentative.
Confirmed
Indicates event is definite.
Cancelled
Indicates event was cancelled.
Trait Implementations§
Source§impl Clone for EventStatus
impl Clone for EventStatus
Source§fn clone(&self) -> EventStatus
fn clone(&self) -> EventStatus
Returns a copy 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 EventStatus
impl Debug for EventStatus
Source§impl From<EventStatus> for Property
impl From<EventStatus> for Property
Source§fn from(val: EventStatus) -> Self
fn from(val: EventStatus) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EventStatus
impl PartialEq for EventStatus
impl Copy for EventStatus
impl Eq for EventStatus
impl StructuralPartialEq for EventStatus
Auto Trait Implementations§
impl Freeze for EventStatus
impl RefUnwindSafe for EventStatus
impl Send for EventStatus
impl Sync for EventStatus
impl Unpin for EventStatus
impl UnwindSafe for EventStatus
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