pub enum ParticipantStatus {
Unknown,
Pending,
Accepted,
Declined,
Tentative,
Delegated,
Completed,
InProcess,
}Expand description
Participant RSVP status.
Variants§
Trait Implementations§
Source§impl Clone for ParticipantStatus
impl Clone for ParticipantStatus
Source§fn clone(&self) -> ParticipantStatus
fn clone(&self) -> ParticipantStatus
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 ParticipantStatus
impl Debug for ParticipantStatus
Source§impl PartialEq for ParticipantStatus
impl PartialEq for ParticipantStatus
impl Copy for ParticipantStatus
impl Eq for ParticipantStatus
impl StructuralPartialEq for ParticipantStatus
Auto Trait Implementations§
impl Freeze for ParticipantStatus
impl RefUnwindSafe for ParticipantStatus
impl Send for ParticipantStatus
impl Sync for ParticipantStatus
impl Unpin for ParticipantStatus
impl UnsafeUnpin for ParticipantStatus
impl UnwindSafe for ParticipantStatus
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