#[non_exhaustive]#[repr(u32)]pub enum dtls_crypto_alg {
AES128 = 0,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AES128 = 0
Trait Implementations§
Source§impl Clone for dtls_crypto_alg
impl Clone for dtls_crypto_alg
Source§fn clone(&self) -> dtls_crypto_alg
fn clone(&self) -> dtls_crypto_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 Debug for dtls_crypto_alg
impl Debug for dtls_crypto_alg
Source§impl Hash for dtls_crypto_alg
impl Hash for dtls_crypto_alg
Source§impl PartialEq for dtls_crypto_alg
impl PartialEq for dtls_crypto_alg
impl Copy for dtls_crypto_alg
impl Eq for dtls_crypto_alg
impl StructuralPartialEq for dtls_crypto_alg
Auto Trait Implementations§
impl Freeze for dtls_crypto_alg
impl RefUnwindSafe for dtls_crypto_alg
impl Send for dtls_crypto_alg
impl Sync for dtls_crypto_alg
impl Unpin for dtls_crypto_alg
impl UnwindSafe for dtls_crypto_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