#[repr(u8)]pub enum Keysizeselect {
_128bit = 0,
_192bit = 1,
_256bit = 2,
}
Expand description
Encryption Key Size
Value on reset: 0
Variants§
_128bit = 0
0: 128-bit Key for Encryption / Decryption
_192bit = 1
1: 192-bit Key for Encryption / Decryption
_256bit = 2
2: 256-bit Key for Encryption / Decryption
Trait Implementations§
Source§impl Clone for Keysizeselect
impl Clone for Keysizeselect
Source§fn clone(&self) -> Keysizeselect
fn clone(&self) -> Keysizeselect
Returns a copy 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 Keysizeselect
impl Debug for Keysizeselect
Source§impl From<Keysizeselect> for u8
impl From<Keysizeselect> for u8
Source§fn from(variant: Keysizeselect) -> Self
fn from(variant: Keysizeselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Keysizeselect
impl PartialEq for Keysizeselect
impl Copy for Keysizeselect
impl Eq for Keysizeselect
impl IsEnum for Keysizeselect
impl StructuralPartialEq for Keysizeselect
Auto Trait Implementations§
impl Freeze for Keysizeselect
impl RefUnwindSafe for Keysizeselect
impl Send for Keysizeselect
impl Sync for Keysizeselect
impl Unpin for Keysizeselect
impl UnwindSafe for Keysizeselect
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