pub enum ServerHelloError {
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 ServerHelloError
impl Debug for ServerHelloError
Source§impl PartialEq for ServerHelloError
impl PartialEq for ServerHelloError
impl StructuralPartialEq for ServerHelloError
Auto Trait Implementations§
impl Freeze for ServerHelloError
impl RefUnwindSafe for ServerHelloError
impl Send for ServerHelloError
impl Sync for ServerHelloError
impl Unpin for ServerHelloError
impl UnwindSafe for ServerHelloError
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