Trait KeyComponent

Source
pub trait KeyComponent<KTY: KeyType>: KeyComponentSealed<KTY> { }
Expand description

Trait indicating that a type can be used as a DTLS key component of the given KeyType KTY.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<KTY: KeyType, T: KeyComponentSealed<KTY>> KeyComponent<KTY> for T