Struct rustls::client::tls12::ExpectNewTicket
source · struct ExpectNewTicket {
config: Arc<ClientConfig>,
secrets: ConnectionSecrets,
resuming_session: Option<Tls12ClientSessionValue>,
session_id: SessionId,
server_name: ServerName,
using_ems: bool,
transcript: HandshakeHash,
resuming: bool,
cert_verified: ServerCertVerified,
sig_verified: HandshakeSignatureValid,
}
Fields§
§config: Arc<ClientConfig>
§secrets: ConnectionSecrets
§resuming_session: Option<Tls12ClientSessionValue>
§session_id: SessionId
§server_name: ServerName
§using_ems: bool
§transcript: HandshakeHash
§resuming: bool
§cert_verified: ServerCertVerified
§sig_verified: HandshakeSignatureValid
Trait Implementations§
source§impl State<ClientConnectionData> for ExpectNewTicket
impl State<ClientConnectionData> for ExpectNewTicket
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 ExpectNewTicket
impl !RefUnwindSafe for ExpectNewTicket
impl Send for ExpectNewTicket
impl Sync for ExpectNewTicket
impl Unpin for ExpectNewTicket
impl !UnwindSafe for ExpectNewTicket
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