Struct rustls::client::hs::ExpectServerHelloOrHelloRetryRequest
source · struct ExpectServerHelloOrHelloRetryRequest {
next: ExpectServerHello,
extra_exts: Vec<ClientExtension>,
}
Fields§
§next: ExpectServerHello
§extra_exts: Vec<ClientExtension>
Implementations§
source§impl ExpectServerHelloOrHelloRetryRequest
impl ExpectServerHelloOrHelloRetryRequest
fn into_expect_server_hello(self) -> Box<dyn State<ClientConnectionData>>
fn handle_hello_retry_request( self, cx: &mut Context<'_, ClientConnectionData>, m: Message, ) -> Result<Box<dyn State<ClientConnectionData>>, Error>
Trait Implementations§
source§impl State<ClientConnectionData> for ExpectServerHelloOrHelloRetryRequest
impl State<ClientConnectionData> for ExpectServerHelloOrHelloRetryRequest
fn handle( self: Box<Self>, cx: &mut Context<'_, ClientConnectionData>, m: Message, ) -> Result<Box<dyn State<ClientConnectionData>>, Error>
fn export_keying_material( &self, _output: &mut [u8], _label: &[u8], _context: Option<&[u8]>, ) -> Result<(), Error>
fn handle_decrypt_error(&self)
Auto Trait Implementations§
impl Freeze for ExpectServerHelloOrHelloRetryRequest
impl !RefUnwindSafe for ExpectServerHelloOrHelloRetryRequest
impl Send for ExpectServerHelloOrHelloRetryRequest
impl Sync for ExpectServerHelloOrHelloRetryRequest
impl Unpin for ExpectServerHelloOrHelloRetryRequest
impl !UnwindSafe for ExpectServerHelloOrHelloRetryRequest
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