pub struct DtlsParameters {
pub role: DtlsRole,
pub fingerprints: Vec<DtlsFingerprint>,
}
Expand description
DTLS parameters.
Fields§
§role: DtlsRole
DTLS role.
fingerprints: Vec<DtlsFingerprint>
DTLS fingerprints.
Trait Implementations§
Source§impl Clone for DtlsParameters
impl Clone for DtlsParameters
Source§fn clone(&self) -> DtlsParameters
fn clone(&self) -> DtlsParameters
Returns a copy 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 DtlsParameters
impl Debug for DtlsParameters
Source§impl<'de> Deserialize<'de> for DtlsParameters
impl<'de> Deserialize<'de> for DtlsParameters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DtlsParameters
impl PartialEq for DtlsParameters
Source§impl PartialOrd for DtlsParameters
impl PartialOrd for DtlsParameters
Source§impl Serialize for DtlsParameters
impl Serialize for DtlsParameters
impl Eq for DtlsParameters
impl StructuralPartialEq for DtlsParameters
Auto Trait Implementations§
impl Freeze for DtlsParameters
impl RefUnwindSafe for DtlsParameters
impl Send for DtlsParameters
impl Sync for DtlsParameters
impl Unpin for DtlsParameters
impl UnwindSafe for DtlsParameters
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