pub enum PartStat {
NeedsAction,
Accepted,
Declined,
Tentative,
Delegated,
Completed,
InProcess,
}Expand description
PARTSTAT parameter (RFC 5545 §3.2.12).
Variants§
NeedsAction
NEEDS-ACTION — not yet responded.
Accepted
ACCEPTED — will attend.
Declined
DECLINED — will not attend.
Tentative
TENTATIVE — may attend.
Delegated
DELEGATED — passed to another attendee.
Completed
COMPLETED — VTODO only.
InProcess
IN-PROCESS — VTODO only.
Trait Implementations§
impl Copy for PartStat
impl Eq for PartStat
impl StructuralPartialEq for PartStat
Auto Trait Implementations§
impl Freeze for PartStat
impl RefUnwindSafe for PartStat
impl Send for PartStat
impl Sync for PartStat
impl Unpin for PartStat
impl UnsafeUnpin for PartStat
impl UnwindSafe for PartStat
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