#[repr(u8)]pub enum AcknowledgedTicketStatus {
Untouched = 0,
BeingRedeemed = 1,
BeingAggregated = 2,
}
Expand description
Status of the acknowledged ticket.
Variants§
Untouched = 0
The ticket is available for redeeming or aggregating
BeingRedeemed = 1
Ticket is currently being redeemed in and ongoing redemption process
BeingAggregated = 2
Ticket is currently being aggregated in and ongoing aggregation process
Trait Implementations§
Source§impl Clone for AcknowledgedTicketStatus
impl Clone for AcknowledgedTicketStatus
Source§fn clone(&self) -> AcknowledgedTicketStatus
fn clone(&self) -> AcknowledgedTicketStatus
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 AcknowledgedTicketStatus
impl Debug for AcknowledgedTicketStatus
Source§impl Default for AcknowledgedTicketStatus
impl Default for AcknowledgedTicketStatus
Source§fn default() -> AcknowledgedTicketStatus
fn default() -> AcknowledgedTicketStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AcknowledgedTicketStatus
impl<'de> Deserialize<'de> for AcknowledgedTicketStatus
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 Display for AcknowledgedTicketStatus
impl Display for AcknowledgedTicketStatus
Source§impl From<AcknowledgedTicketStatus> for u8
impl From<AcknowledgedTicketStatus> for u8
Source§fn from(enum_value: AcknowledgedTicketStatus) -> Self
fn from(enum_value: AcknowledgedTicketStatus) -> Self
Converts to this type from the input type.
Source§impl FromStr for AcknowledgedTicketStatus
impl FromStr for AcknowledgedTicketStatus
Source§impl PartialEq for AcknowledgedTicketStatus
impl PartialEq for AcknowledgedTicketStatus
Source§impl Serialize for AcknowledgedTicketStatus
impl Serialize for AcknowledgedTicketStatus
Source§impl TryFrom<&str> for AcknowledgedTicketStatus
impl TryFrom<&str> for AcknowledgedTicketStatus
Source§impl TryFrom<u8> for AcknowledgedTicketStatus
impl TryFrom<u8> for AcknowledgedTicketStatus
Source§impl TryFromPrimitive for AcknowledgedTicketStatus
impl TryFromPrimitive for AcknowledgedTicketStatus
impl Copy for AcknowledgedTicketStatus
impl Eq for AcknowledgedTicketStatus
impl StructuralPartialEq for AcknowledgedTicketStatus
Auto Trait Implementations§
impl Freeze for AcknowledgedTicketStatus
impl RefUnwindSafe for AcknowledgedTicketStatus
impl Send for AcknowledgedTicketStatus
impl Sync for AcknowledgedTicketStatus
impl Unpin for AcknowledgedTicketStatus
impl UnwindSafe for AcknowledgedTicketStatus
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.