Enum tinydtls_sys::dtls_crypto_alg
source · #[repr(u32)]
#[non_exhaustive]
pub enum dtls_crypto_alg {
AES128,
}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
Trait Implementations
sourceimpl Clone for dtls_crypto_alg
impl Clone for dtls_crypto_alg
sourcefn clone(&self) -> dtls_crypto_alg
fn clone(&self) -> dtls_crypto_alg
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for dtls_crypto_alg
impl Debug for dtls_crypto_alg
sourceimpl Hash for dtls_crypto_alg
impl Hash for dtls_crypto_alg
sourceimpl PartialEq<dtls_crypto_alg> for dtls_crypto_alg
impl PartialEq<dtls_crypto_alg> for dtls_crypto_alg
sourcefn eq(&self, other: &dtls_crypto_alg) -> bool
fn eq(&self, other: &dtls_crypto_alg) -> bool
impl Copy for dtls_crypto_alg
impl Eq for dtls_crypto_alg
impl StructuralEq for dtls_crypto_alg
impl StructuralPartialEq for dtls_crypto_alg
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more