#[repr(u8)]pub enum Cfbsselect {
_128bit = 0,
_64bit = 1,
_32bit = 2,
_16bit = 3,
_8bit = 4,
}
Expand description
Cipher Feedback Block Size
Value on reset: 0
Variants§
_128bit = 0
0: 128-bit Input data block for Encryption/Decryption in Cipher Feedback mode
_64bit = 1
1: 64-bit Input data block for Encryption/Decryption in Cipher Feedback mode
_32bit = 2
2: 32-bit Input data block for Encryption/Decryption in Cipher Feedback mode
_16bit = 3
3: 16-bit Input data block for Encryption/Decryption in Cipher Feedback mode
_8bit = 4
4: 8-bit Input data block for Encryption/Decryption in Cipher Feedback mode
Trait Implementations§
Source§impl Clone for Cfbsselect
impl Clone for Cfbsselect
Source§fn clone(&self) -> Cfbsselect
fn clone(&self) -> Cfbsselect
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 Cfbsselect
impl Debug for Cfbsselect
Source§impl PartialEq for Cfbsselect
impl PartialEq for Cfbsselect
impl Copy for Cfbsselect
impl Eq for Cfbsselect
impl IsEnum for Cfbsselect
impl StructuralPartialEq for Cfbsselect
Auto Trait Implementations§
impl Freeze for Cfbsselect
impl RefUnwindSafe for Cfbsselect
impl Send for Cfbsselect
impl Sync for Cfbsselect
impl Unpin for Cfbsselect
impl UnwindSafe for Cfbsselect
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