Enum kpdb::Obfuscation
[−]
[src]
pub enum Obfuscation {
None,
UseClipboard,
}The type of obfuscation to use.
Variants
NoneUseClipboardMethods
impl Obfuscation[src]
fn from_i32(id: i32) -> Result<Obfuscation, ObfuscationError>
Attempts to convert an integer to an obfuscation type.
Examples
use kpdb::Obfuscation; let obfuscation = try!(Obfuscation::from_i32(0));
fn to_i32(self) -> i32
Gets the integer value of the obfuscation type.
Examples
use kpdb::Obfuscation; let obfuscation = Obfuscation::None; let integer = obfuscation.to_i32();
Trait Implementations
impl Clone for Obfuscation[src]
fn clone(&self) -> Obfuscation
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for Obfuscation[src]
impl Debug for Obfuscation[src]
impl Eq for Obfuscation[src]
impl Hash for Obfuscation[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher1.3.0
Feeds a slice of this type into the state provided.
impl PartialEq for Obfuscation[src]
fn eq(&self, __arg_0: &Obfuscation) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl PartialOrd for Obfuscation[src]
fn partial_cmp(&self, __arg_0: &Obfuscation) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for Obfuscation[src]
fn cmp(&self, __arg_0: &Obfuscation) -> Ordering
This method returns an Ordering between self and other. Read more
impl Default for Obfuscation[src]
fn default() -> Obfuscation
Returns the "default value" for a type. Read more