pub enum PendingStatus {
AwaitingSelection,
Selected {
action_id: String,
},
Expired,
}Variants§
Trait Implementations§
Source§impl Clone for PendingStatus
impl Clone for PendingStatus
Source§fn clone(&self) -> PendingStatus
fn clone(&self) -> PendingStatus
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 moreSource§impl Debug for PendingStatus
impl Debug for PendingStatus
Source§impl<'de> Deserialize<'de> for PendingStatus
impl<'de> Deserialize<'de> for PendingStatus
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 PendingStatus
impl PartialEq for PendingStatus
Source§fn eq(&self, other: &PendingStatus) -> bool
fn eq(&self, other: &PendingStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PendingStatus
impl Serialize for PendingStatus
impl StructuralPartialEq for PendingStatus
Auto Trait Implementations§
impl Freeze for PendingStatus
impl RefUnwindSafe for PendingStatus
impl Send for PendingStatus
impl Sync for PendingStatus
impl Unpin for PendingStatus
impl UnsafeUnpin for PendingStatus
impl UnwindSafe for PendingStatus
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