pub struct OwnedApp {
pub app_id: u32,
pub package_id: u32,
pub time_created: u32,
pub license_type: u32,
pub flags: u32,
}Expand description
Owned app license.
Fields§
§app_id: u32App ID.
package_id: u32Package ID.
time_created: u32Time purchased.
license_type: u32License type.
flags: u32License flags.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OwnedApp
impl RefUnwindSafe for OwnedApp
impl Send for OwnedApp
impl Sync for OwnedApp
impl Unpin for OwnedApp
impl UnsafeUnpin for OwnedApp
impl UnwindSafe for OwnedApp
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<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