pub enum TlsError {
Show 33 variants
ConnectionClosed,
Unimplemented,
MissingHandshake,
HandshakeAborted(AlertLevel, AlertDescription),
AbortHandshake(AlertLevel, AlertDescription),
IoError,
InternalError,
InvalidRecord,
UnknownContentType,
InvalidNonceLength,
InvalidTicketLength,
UnknownExtensionType,
InsufficientSpace,
InvalidHandshake,
InvalidCipherSuite,
InvalidSignatureScheme,
InvalidSignature,
InvalidExtensionsLength,
InvalidSessionIdLength,
InvalidSupportedVersions,
InvalidApplicationData,
InvalidKeyShare,
InvalidCertificate,
InvalidCertificateEntry,
InvalidCertificateRequest,
InvalidPrivateKey,
UnableToInitializeCryptoEngine,
ParseError(ParseError),
OutOfMemory,
CryptoError,
EncodeError,
DecodeError,
Io(ErrorKind),
}Variants§
ConnectionClosed
Unimplemented
MissingHandshake
HandshakeAborted(AlertLevel, AlertDescription)
AbortHandshake(AlertLevel, AlertDescription)
IoError
InternalError
InvalidRecord
UnknownContentType
InvalidNonceLength
InvalidTicketLength
UnknownExtensionType
InsufficientSpace
InvalidHandshake
InvalidCipherSuite
InvalidSignatureScheme
InvalidSignature
InvalidExtensionsLength
InvalidSessionIdLength
InvalidSupportedVersions
InvalidApplicationData
InvalidCertificate
InvalidCertificateEntry
InvalidCertificateRequest
InvalidPrivateKey
UnableToInitializeCryptoEngine
ParseError(ParseError)
OutOfMemory
CryptoError
EncodeError
DecodeError
Io(ErrorKind)
Trait Implementations§
Source§impl Error for TlsError
impl Error for TlsError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl Copy for TlsError
Auto Trait Implementations§
impl Freeze for TlsError
impl RefUnwindSafe for TlsError
impl Send for TlsError
impl Sync for TlsError
impl Unpin for TlsError
impl UnwindSafe for TlsError
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