#[repr(u32)]pub enum aes_mode_t {
AES_MODE_ECB = 2,
AES_MODE_CTR = 11,
AES_MODE_XTS = 52,
}Variants§
Trait Implementations§
Source§impl Clone for aes_mode_t
impl Clone for aes_mode_t
Source§fn clone(&self) -> aes_mode_t
fn clone(&self) -> aes_mode_t
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 aes_mode_t
impl Debug for aes_mode_t
Source§impl Hash for aes_mode_t
impl Hash for aes_mode_t
Source§impl PartialEq for aes_mode_t
impl PartialEq for aes_mode_t
impl Copy for aes_mode_t
impl Eq for aes_mode_t
impl StructuralPartialEq for aes_mode_t
Auto Trait Implementations§
impl Freeze for aes_mode_t
impl RefUnwindSafe for aes_mode_t
impl Send for aes_mode_t
impl Sync for aes_mode_t
impl Unpin for aes_mode_t
impl UnwindSafe for aes_mode_t
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