pub struct LicenseEntry {Show 18 fields
pub package_id: u32,
pub time_created: u32,
pub time_next_process: u32,
pub minute_limit: i32,
pub minutes_used: i32,
pub payment_method: u32,
pub flags: u32,
pub purchase_country_code: String,
pub license_type: u32,
pub territory_code: i32,
pub change_number: i32,
pub owner_id: u32,
pub initial_period: u32,
pub initial_time_unit: u32,
pub renewal_period: u32,
pub renewal_time_unit: u32,
pub access_token: u64,
pub master_package_id: u32,
}Expand description
License entry.
Fields§
§package_id: u32§time_created: u32§time_next_process: u32§minute_limit: i32§minutes_used: i32§payment_method: u32§flags: u32§purchase_country_code: String§license_type: u32§territory_code: i32§change_number: i32§owner_id: u32§initial_period: u32§initial_time_unit: u32§renewal_period: u32§renewal_time_unit: u32§access_token: u64§master_package_id: u32Trait Implementations§
Source§impl Clone for LicenseEntry
impl Clone for LicenseEntry
Source§fn clone(&self) -> LicenseEntry
fn clone(&self) -> LicenseEntry
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 LicenseEntry
impl Debug for LicenseEntry
Source§impl Default for LicenseEntry
impl Default for LicenseEntry
Source§fn default() -> LicenseEntry
fn default() -> LicenseEntry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LicenseEntry
impl RefUnwindSafe for LicenseEntry
impl Send for LicenseEntry
impl Sync for LicenseEntry
impl Unpin for LicenseEntry
impl UnsafeUnpin for LicenseEntry
impl UnwindSafe for LicenseEntry
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