#[repr(u8)]pub enum PlayTime {
Undeclared = 0,
ZeroToFiveMinutes = 1,
FiveToSixtyMinutes = 2,
OneToSixHours = 3,
SixHoursToTwentyFourHours = 4,
OneDayToFourDays = 5,
FourDaysToSixteenDays = 6,
OverSixteenDays = 7,
}Expand description
A value that indicates the amount of time that the customer used the app.
Variants§
Undeclared = 0
ZeroToFiveMinutes = 1
FiveToSixtyMinutes = 2
OneToSixHours = 3
SixHoursToTwentyFourHours = 4
OneDayToFourDays = 5
FourDaysToSixteenDays = 6
OverSixteenDays = 7
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PlayTime
impl<'de> Deserialize<'de> for PlayTime
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
impl Eq for PlayTime
impl StructuralPartialEq for PlayTime
Auto Trait Implementations§
impl Freeze for PlayTime
impl RefUnwindSafe for PlayTime
impl Send for PlayTime
impl Sync for PlayTime
impl Unpin for PlayTime
impl UnwindSafe for PlayTime
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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