pub enum DtlsError {
Show 14 variants
MaximumConnectionsReached,
UnknownConnection,
MaximumRetransmissionsReached,
HandshakeAlreadyRunning,
OutOfMemory,
IllegalInnerState,
IoError,
RngError,
ParseError,
CryptoError,
NoMatchingEpoch,
RejectedSequenceNumber,
Alert(AlertDescription),
MultipleRecordsPerPacketNotSupported,
}Variants§
MaximumConnectionsReached
UnknownConnection
MaximumRetransmissionsReached
HandshakeAlreadyRunning
OutOfMemory
IllegalInnerState
Indicates a bug in the implementation
IoError
RngError
ParseError
CryptoError
NoMatchingEpoch
RejectedSequenceNumber
Alert(AlertDescription)
MultipleRecordsPerPacketNotSupported
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DtlsError
impl RefUnwindSafe for DtlsError
impl Send for DtlsError
impl Sync for DtlsError
impl Unpin for DtlsError
impl UnwindSafe for DtlsError
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