Struct rustls::unbuffered::TransmitTlsData
source · pub struct TransmitTlsData<'c, Data> { /* private fields */ }
Expand description
Previously encoded TLS data must be transmitted
Implementations§
source§impl<Data> TransmitTlsData<'_, Data>
impl<Data> TransmitTlsData<'_, Data>
sourcepub fn may_encrypt_app_data(&mut self) -> Option<WriteTraffic<'_, Data>>
pub fn may_encrypt_app_data(&mut self) -> Option<WriteTraffic<'_, Data>>
Returns an adapter that allows encrypting application data
If allowed at this stage of the handshake process
source§impl TransmitTlsData<'_, ClientConnectionData>
impl TransmitTlsData<'_, ClientConnectionData>
sourcepub fn may_encrypt_early_data(&mut self) -> Option<MayEncryptEarlyData<'_>>
pub fn may_encrypt_early_data(&mut self) -> Option<MayEncryptEarlyData<'_>>
returns an adapter that allows encrypting early (RTT-0) data before transmitting the already encoded TLS data
IF allowed by the protocol
Trait Implementations§
source§impl<'c, 'i, Data> From<TransmitTlsData<'c, Data>> for ConnectionState<'c, 'i, Data>
impl<'c, 'i, Data> From<TransmitTlsData<'c, Data>> for ConnectionState<'c, 'i, Data>
source§fn from(v: TransmitTlsData<'c, Data>) -> Self
fn from(v: TransmitTlsData<'c, Data>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'c, Data> Freeze for TransmitTlsData<'c, Data>
impl<'c, Data> !RefUnwindSafe for TransmitTlsData<'c, Data>
impl<'c, Data> Send for TransmitTlsData<'c, Data>where
Data: Send,
impl<'c, Data> Sync for TransmitTlsData<'c, Data>where
Data: Sync,
impl<'c, Data> Unpin for TransmitTlsData<'c, Data>
impl<'c, Data> !UnwindSafe for TransmitTlsData<'c, Data>
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