pub struct StatusLicense {
pub state: String,
pub trial_remaining_s: Option<i64>,
}Expand description
License block of StatusOverview — trial_remaining_s keeps the
seconds unit in the KEY itself.
Fields§
§state: String"trial" / "licensed" / …
trial_remaining_s: Option<i64>Trial countdown in SECONDS, when reported.
Trait Implementations§
Source§impl Debug for StatusLicense
impl Debug for StatusLicense
Auto Trait Implementations§
impl Freeze for StatusLicense
impl RefUnwindSafe for StatusLicense
impl Send for StatusLicense
impl Sync for StatusLicense
impl Unpin for StatusLicense
impl UnsafeUnpin for StatusLicense
impl UnwindSafe for StatusLicense
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