pub struct DTLSPlaintext<'a> {
pub header: DTLSRecordHeader,
pub messages: Vec<DTLSMessage<'a>>,
}
Expand description
DTLS Plaintext record
Each DTLS record MUST fit within a single datagram.
Multiple DTLS records may be placed in a single datagram.
Fields§
§header: DTLSRecordHeader
§messages: Vec<DTLSMessage<'a>>
Trait Implementations§
Source§impl<'a> Debug for DTLSPlaintext<'a>
impl<'a> Debug for DTLSPlaintext<'a>
Source§impl<'a> PartialEq for DTLSPlaintext<'a>
impl<'a> PartialEq for DTLSPlaintext<'a>
impl<'a> StructuralPartialEq for DTLSPlaintext<'a>
Auto Trait Implementations§
impl<'a> Freeze for DTLSPlaintext<'a>
impl<'a> RefUnwindSafe for DTLSPlaintext<'a>
impl<'a> Send for DTLSPlaintext<'a>
impl<'a> Sync for DTLSPlaintext<'a>
impl<'a> Unpin for DTLSPlaintext<'a>
impl<'a> UnwindSafe for DTLSPlaintext<'a>
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