pub enum ProtectionState {
Checking,
Ok,
Error,
}Expand description
Represents the copy protection or registration state.
Variants§
Checking
Signifies the engine is checking the copy protection or registration.
Ok
Signifies the copy protection or registration has been validated.
Error
Signifies error in copy protection or registratin validation.
Trait Implementations§
Source§impl Clone for ProtectionState
impl Clone for ProtectionState
Source§fn clone(&self) -> ProtectionState
fn clone(&self) -> ProtectionState
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 ProtectionState
impl Debug for ProtectionState
Source§impl Hash for ProtectionState
impl Hash for ProtectionState
Source§impl PartialEq for ProtectionState
impl PartialEq for ProtectionState
impl Copy for ProtectionState
impl Eq for ProtectionState
impl StructuralPartialEq for ProtectionState
Auto Trait Implementations§
impl Freeze for ProtectionState
impl RefUnwindSafe for ProtectionState
impl Send for ProtectionState
impl Sync for ProtectionState
impl Unpin for ProtectionState
impl UnwindSafe for ProtectionState
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