pub struct LicenseAddon {
pub id: String,
pub license_serial: String,
pub product: String,
pub created_timestamp: u64,
pub expiration_timestamp: u64,
pub signature: String,
}Fields§
§id: String§license_serial: String§product: String§created_timestamp: u64§expiration_timestamp: u64§signature: StringTrait Implementations§
Source§impl Clone for LicenseAddon
impl Clone for LicenseAddon
Source§fn clone(&self) -> LicenseAddon
fn clone(&self) -> LicenseAddon
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 LicenseAddon
impl Debug for LicenseAddon
Source§impl PartialEq for LicenseAddon
impl PartialEq for LicenseAddon
impl Eq for LicenseAddon
impl StructuralPartialEq for LicenseAddon
Auto Trait Implementations§
impl Freeze for LicenseAddon
impl RefUnwindSafe for LicenseAddon
impl Send for LicenseAddon
impl Sync for LicenseAddon
impl Unpin for LicenseAddon
impl UnwindSafe for LicenseAddon
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