Struct rustls::server::tls12::ExpectFinished
source · struct ExpectFinished {
config: Arc<ServerConfig>,
secrets: ConnectionSecrets,
transcript: HandshakeHash,
session_id: SessionId,
using_ems: bool,
resuming: bool,
send_ticket: bool,
}
Fields§
§config: Arc<ServerConfig>
§secrets: ConnectionSecrets
§transcript: HandshakeHash
§session_id: SessionId
§using_ems: bool
§resuming: bool
§send_ticket: bool
Trait Implementations§
source§impl State<ServerConnectionData> for ExpectFinished
impl State<ServerConnectionData> for ExpectFinished
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 ExpectFinished
impl !RefUnwindSafe for ExpectFinished
impl Send for ExpectFinished
impl Sync for ExpectFinished
impl Unpin for ExpectFinished
impl !UnwindSafe for ExpectFinished
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