pub enum E_ENCRYPT_ALG {
enc_alg_null = 0,
enc_alg_aes_cbc_128 = 1,
enc_alg_aes_cbc_256 = 2,
enc_alg_aes_gcm_128 = 3,
enc_alg_aes_gcm_256 = 4,
enc_alg_sm4 = 5,
}Variants§
enc_alg_null = 0
enc_alg_aes_cbc_128 = 1
enc_alg_aes_cbc_256 = 2
enc_alg_aes_gcm_128 = 3
enc_alg_aes_gcm_256 = 4
enc_alg_sm4 = 5
Trait Implementations§
Source§impl Clone for E_ENCRYPT_ALG
impl Clone for E_ENCRYPT_ALG
Source§fn clone(&self) -> E_ENCRYPT_ALG
fn clone(&self) -> E_ENCRYPT_ALG
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 PartialEq for E_ENCRYPT_ALG
impl PartialEq for E_ENCRYPT_ALG
impl Copy for E_ENCRYPT_ALG
impl Eq for E_ENCRYPT_ALG
impl StructuralPartialEq for E_ENCRYPT_ALG
Auto Trait Implementations§
impl Freeze for E_ENCRYPT_ALG
impl RefUnwindSafe for E_ENCRYPT_ALG
impl Send for E_ENCRYPT_ALG
impl Sync for E_ENCRYPT_ALG
impl Unpin for E_ENCRYPT_ALG
impl UnwindSafe for E_ENCRYPT_ALG
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