#[repr(u32)]pub enum aes_operation_t {
AES_DECRYPT = 0,
AES_ENCRYPT = 1,
}Variants§
Trait Implementations§
Source§impl Clone for aes_operation_t
impl Clone for aes_operation_t
Source§fn clone(&self) -> aes_operation_t
fn clone(&self) -> aes_operation_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_operation_t
impl Debug for aes_operation_t
Source§impl Hash for aes_operation_t
impl Hash for aes_operation_t
Source§impl PartialEq for aes_operation_t
impl PartialEq for aes_operation_t
impl Copy for aes_operation_t
impl Eq for aes_operation_t
impl StructuralPartialEq for aes_operation_t
Auto Trait Implementations§
impl Freeze for aes_operation_t
impl RefUnwindSafe for aes_operation_t
impl Send for aes_operation_t
impl Sync for aes_operation_t
impl Unpin for aes_operation_t
impl UnwindSafe for aes_operation_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