pub enum CryptorTypeWithArgs {
Vigenere,
Cut,
Caesar,
Transpose,
Swap,
Colors,
IndexCrypt,
Permute,
Enigma,
}Variants§
Trait Implementations§
Source§impl Clone for CryptorTypeWithArgs
impl Clone for CryptorTypeWithArgs
Source§fn clone(&self) -> CryptorTypeWithArgs
fn clone(&self) -> CryptorTypeWithArgs
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 CryptorTypeWithArgs
impl Debug for CryptorTypeWithArgs
Source§impl<'de> Deserialize<'de> for CryptorTypeWithArgs
impl<'de> Deserialize<'de> for CryptorTypeWithArgs
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 Ord for CryptorTypeWithArgs
impl Ord for CryptorTypeWithArgs
Source§fn cmp(&self, other: &CryptorTypeWithArgs) -> Ordering
fn cmp(&self, other: &CryptorTypeWithArgs) -> 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 CryptorTypeWithArgs
impl PartialEq for CryptorTypeWithArgs
Source§impl PartialOrd for CryptorTypeWithArgs
impl PartialOrd for CryptorTypeWithArgs
Source§impl Serialize for CryptorTypeWithArgs
impl Serialize for CryptorTypeWithArgs
impl Copy for CryptorTypeWithArgs
impl Eq for CryptorTypeWithArgs
impl StructuralPartialEq for CryptorTypeWithArgs
Auto Trait Implementations§
impl Freeze for CryptorTypeWithArgs
impl RefUnwindSafe for CryptorTypeWithArgs
impl Send for CryptorTypeWithArgs
impl Sync for CryptorTypeWithArgs
impl Unpin for CryptorTypeWithArgs
impl UnwindSafe for CryptorTypeWithArgs
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