pub enum PlayTime {
Undeclared,
ZeroToFiveMinutes,
FiveToSixtyMinutes,
OneToSixHours,
SixHoursToTwentyFourHours,
OneDayToFourDays,
FourDaysToSixteenDays,
OverSixteenDays,
NotSupported(i64),
}Expand description
A value that indicates the amount of time that the customer used the app.
Variants§
Undeclared
ZeroToFiveMinutes
FiveToSixtyMinutes
OneToSixHours
SixHoursToTwentyFourHours
OneDayToFourDays
FourDaysToSixteenDays
OverSixteenDays
NotSupported(i64)
A value the App Store sent that this version of the library does not support, preserved as received.
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 UnsafeUnpin 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