#[repr(u8)]pub enum ScheduledEventStatus {
Scheduled = 1,
Active = 2,
Completed = 3,
Cancelled = 4,
}Expand description
Status of a scheduled event.
Variants§
Scheduled = 1
The event is scheduled.
Active = 2
The event is active/started.
Completed = 3
The event has completed.
Cancelled = 4
The event was cancelled.
Trait Implementations§
Source§impl Clone for ScheduledEventStatus
impl Clone for ScheduledEventStatus
Source§fn clone(&self) -> ScheduledEventStatus
fn clone(&self) -> ScheduledEventStatus
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 ScheduledEventStatus
impl Debug for ScheduledEventStatus
Source§impl<'de> Deserialize<'de> for ScheduledEventStatus
impl<'de> Deserialize<'de> for ScheduledEventStatus
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ScheduledEventStatus
impl PartialEq for ScheduledEventStatus
Source§impl Serialize for ScheduledEventStatus
impl Serialize for ScheduledEventStatus
impl Copy for ScheduledEventStatus
impl Eq for ScheduledEventStatus
impl StructuralPartialEq for ScheduledEventStatus
Auto Trait Implementations§
impl Freeze for ScheduledEventStatus
impl RefUnwindSafe for ScheduledEventStatus
impl Send for ScheduledEventStatus
impl Sync for ScheduledEventStatus
impl Unpin for ScheduledEventStatus
impl UnwindSafe for ScheduledEventStatus
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