pub enum Obfuscation {
None,
UseClipboard,
}Expand description
The type of obfuscation to use.
Variants§
Implementations§
Source§impl Obfuscation
impl Obfuscation
Sourcepub fn from_i32(id: i32) -> Result<Obfuscation, ObfuscationError>
pub fn from_i32(id: i32) -> Result<Obfuscation, ObfuscationError>
Attempts to convert an integer to an obfuscation type.
§Examples
use kpdb::Obfuscation;
let obfuscation = Obfuscation::from_i32(0)?;Trait Implementations§
Source§impl Clone for Obfuscation
impl Clone for Obfuscation
Source§fn clone(&self) -> Obfuscation
fn clone(&self) -> Obfuscation
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 Obfuscation
impl Debug for Obfuscation
Source§impl Default for Obfuscation
impl Default for Obfuscation
Source§fn default() -> Obfuscation
fn default() -> Obfuscation
Returns the “default value” for a type. Read more
Source§impl Hash for Obfuscation
impl Hash for Obfuscation
Source§impl Ord for Obfuscation
impl Ord for Obfuscation
Source§fn cmp(&self, other: &Obfuscation) -> Ordering
fn cmp(&self, other: &Obfuscation) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Obfuscation
impl PartialEq for Obfuscation
Source§impl PartialOrd for Obfuscation
impl PartialOrd for Obfuscation
impl Copy for Obfuscation
impl Eq for Obfuscation
impl StructuralPartialEq for Obfuscation
Auto Trait Implementations§
impl Freeze for Obfuscation
impl RefUnwindSafe for Obfuscation
impl Send for Obfuscation
impl Sync for Obfuscation
impl Unpin for Obfuscation
impl UnwindSafe for Obfuscation
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