pub enum CheckInKind {
Expected,
WasExpected,
CheckedIn,
}Expand description
One of the three metadata states a Check In balloon can advertise. The
variant choice mirrors the query-string key the timestamp came from
(estimatedEndTime, triggerTime, sendDate).
Variants§
Expected
estimatedEndTime: Check In is scheduled and still pending.
WasExpected
triggerTime: Check In window has passed without confirmation.
CheckedIn
sendDate: Check In was manually confirmed.
Trait Implementations§
Source§impl Clone for CheckInKind
impl Clone for CheckInKind
Source§fn clone(&self) -> CheckInKind
fn clone(&self) -> CheckInKind
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 CheckInKind
impl Debug for CheckInKind
Source§impl PartialEq for CheckInKind
impl PartialEq for CheckInKind
Source§fn eq(&self, other: &CheckInKind) -> bool
fn eq(&self, other: &CheckInKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CheckInKind
impl Eq for CheckInKind
impl StructuralPartialEq for CheckInKind
Auto Trait Implementations§
impl Freeze for CheckInKind
impl RefUnwindSafe for CheckInKind
impl Send for CheckInKind
impl Sync for CheckInKind
impl Unpin for CheckInKind
impl UnsafeUnpin for CheckInKind
impl UnwindSafe for CheckInKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.