Struct rustls::client::tls13::ExpectCertificateOrCertReq
source · struct ExpectCertificateOrCertReq {
config: Arc<ClientConfig>,
server_name: ServerName,
randoms: ConnectionRandoms,
suite: &'static Tls13CipherSuite,
transcript: HandshakeHash,
key_schedule: KeyScheduleHandshake,
may_send_sct_list: bool,
}
Fields§
§config: Arc<ClientConfig>
§server_name: ServerName
§randoms: ConnectionRandoms
§suite: &'static Tls13CipherSuite
§transcript: HandshakeHash
§key_schedule: KeyScheduleHandshake
§may_send_sct_list: bool
Trait Implementations§
source§impl State<ClientConnectionData> for ExpectCertificateOrCertReq
impl State<ClientConnectionData> for ExpectCertificateOrCertReq
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 ExpectCertificateOrCertReq
impl !RefUnwindSafe for ExpectCertificateOrCertReq
impl Send for ExpectCertificateOrCertReq
impl Sync for ExpectCertificateOrCertReq
impl Unpin for ExpectCertificateOrCertReq
impl !UnwindSafe for ExpectCertificateOrCertReq
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