Struct rustls::server::tls13::ExpectCertificateVerify
source · struct ExpectCertificateVerify {
config: Arc<ServerConfig>,
transcript: HandshakeHash,
suite: &'static Tls13CipherSuite,
key_schedule: KeyScheduleTrafficWithClientFinishedPending,
client_cert: Vec<Certificate>,
send_tickets: usize,
}
Fields§
§config: Arc<ServerConfig>
§transcript: HandshakeHash
§suite: &'static Tls13CipherSuite
§key_schedule: KeyScheduleTrafficWithClientFinishedPending
§client_cert: Vec<Certificate>
§send_tickets: usize
Trait Implementations§
source§impl State<ServerConnectionData> for ExpectCertificateVerify
impl State<ServerConnectionData> for ExpectCertificateVerify
fn handle( self: Box<Self>, cx: &mut Context<'_, ServerConnectionData>, m: Message, ) -> Result<Box<dyn State<ServerConnectionData>>, 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 ExpectCertificateVerify
impl !RefUnwindSafe for ExpectCertificateVerify
impl Send for ExpectCertificateVerify
impl Sync for ExpectCertificateVerify
impl Unpin for ExpectCertificateVerify
impl !UnwindSafe for ExpectCertificateVerify
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