pub enum ActivationMethod {
Offline,
Online,
}Variants§
Offline
The license has been activated offline and is irrevocable, therefore we mustn’t check license validity online.
Online
The license has been activated online and may have been revoked from this machine since. We should regularly ask Moonbase if the license is still valid.
Trait Implementations§
Source§impl Debug for ActivationMethod
impl Debug for ActivationMethod
Source§impl<'de> Deserialize<'de> for ActivationMethod
impl<'de> Deserialize<'de> for ActivationMethod
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
Source§impl PartialEq for ActivationMethod
impl PartialEq for ActivationMethod
impl Eq for ActivationMethod
impl StructuralPartialEq for ActivationMethod
Auto Trait Implementations§
impl Freeze for ActivationMethod
impl RefUnwindSafe for ActivationMethod
impl Send for ActivationMethod
impl Sync for ActivationMethod
impl Unpin for ActivationMethod
impl UnsafeUnpin for ActivationMethod
impl UnwindSafe for ActivationMethod
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