#[repr(i32)]pub enum _STORAGE_CRYPTO_ALGORITHM_ID {
StorageCryptoAlgorithmUnknown = 0,
StorageCryptoAlgorithmXTSAES = 1,
StorageCryptoAlgorithmBitlockerAESCBC = 2,
StorageCryptoAlgorithmAESECB = 3,
StorageCryptoAlgorithmESSIVAESCBC = 4,
StorageCryptoAlgorithmMax = 5,
}Variants§
StorageCryptoAlgorithmUnknown = 0
StorageCryptoAlgorithmXTSAES = 1
StorageCryptoAlgorithmBitlockerAESCBC = 2
StorageCryptoAlgorithmAESECB = 3
StorageCryptoAlgorithmESSIVAESCBC = 4
StorageCryptoAlgorithmMax = 5
Trait Implementations§
Source§impl Clone for _STORAGE_CRYPTO_ALGORITHM_ID
impl Clone for _STORAGE_CRYPTO_ALGORITHM_ID
Source§fn clone(&self) -> _STORAGE_CRYPTO_ALGORITHM_ID
fn clone(&self) -> _STORAGE_CRYPTO_ALGORITHM_ID
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 Debug for _STORAGE_CRYPTO_ALGORITHM_ID
impl Debug for _STORAGE_CRYPTO_ALGORITHM_ID
Source§impl Hash for _STORAGE_CRYPTO_ALGORITHM_ID
impl Hash for _STORAGE_CRYPTO_ALGORITHM_ID
Source§impl PartialEq for _STORAGE_CRYPTO_ALGORITHM_ID
impl PartialEq for _STORAGE_CRYPTO_ALGORITHM_ID
Source§fn eq(&self, other: &_STORAGE_CRYPTO_ALGORITHM_ID) -> bool
fn eq(&self, other: &_STORAGE_CRYPTO_ALGORITHM_ID) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for _STORAGE_CRYPTO_ALGORITHM_ID
impl Eq for _STORAGE_CRYPTO_ALGORITHM_ID
impl StructuralPartialEq for _STORAGE_CRYPTO_ALGORITHM_ID
Auto Trait Implementations§
impl Freeze for _STORAGE_CRYPTO_ALGORITHM_ID
impl RefUnwindSafe for _STORAGE_CRYPTO_ALGORITHM_ID
impl Send for _STORAGE_CRYPTO_ALGORITHM_ID
impl Sync for _STORAGE_CRYPTO_ALGORITHM_ID
impl Unpin for _STORAGE_CRYPTO_ALGORITHM_ID
impl UnwindSafe for _STORAGE_CRYPTO_ALGORITHM_ID
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