pub enum ClientHelloError {
OverflowSesId,
OverflowCipherSuites,
Extensions(ExtensionsError),
CipherSuites(CipherSuitesError),
}Variants§
OverflowSesId
Session Id <= 32 bytes
OverflowCipherSuites
Cipher Suites <= 65534 bytes
Extensions(ExtensionsError)
One of the extensions is invalid
CipherSuites(CipherSuitesError)
One of the Cipher Suites is invalid
Trait Implementations§
Source§impl Debug for ClientHelloError
impl Debug for ClientHelloError
Source§impl PartialEq for ClientHelloError
impl PartialEq for ClientHelloError
impl StructuralPartialEq for ClientHelloError
Auto Trait Implementations§
impl Freeze for ClientHelloError
impl RefUnwindSafe for ClientHelloError
impl Send for ClientHelloError
impl Sync for ClientHelloError
impl Unpin for ClientHelloError
impl UnwindSafe for ClientHelloError
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