pub struct ReadEarlyData<'c, 'i, Data> {
conn: &'c mut UnbufferedConnectionCommon<Data>,
_incoming_tls: &'i mut [u8],
chunk: Option<Vec<u8>>,
}
Expand description
Early application-data is available.
Fields§
§conn: &'c mut UnbufferedConnectionCommon<Data>
§_incoming_tls: &'i mut [u8]
§chunk: Option<Vec<u8>>
Implementations§
Source§impl<'c, 'i> ReadEarlyData<'c, 'i, ServerConnectionData>
impl<'c, 'i> ReadEarlyData<'c, 'i, ServerConnectionData>
fn new( conn: &'c mut UnbufferedConnectionCommon<ServerConnectionData>, _incoming_tls: &'i mut [u8], ) -> Self
Sourcepub fn next_record(&mut self) -> Option<Result<AppDataRecord<'_>, Error>>
pub fn next_record(&mut self) -> Option<Result<AppDataRecord<'_>, Error>>
decrypts and returns the next available app-data record
Sourcepub fn peek_len(&self) -> Option<NonZeroUsize>
pub fn peek_len(&self) -> Option<NonZeroUsize>
returns the payload size of the next app-data record without decrypting it
returns None
if there are no more app-data records
Trait Implementations§
Source§impl<'c, 'i, Data> From<ReadEarlyData<'c, 'i, Data>> for ConnectionState<'c, 'i, Data>
impl<'c, 'i, Data> From<ReadEarlyData<'c, 'i, Data>> for ConnectionState<'c, 'i, Data>
Source§fn from(v: ReadEarlyData<'c, 'i, Data>) -> Self
fn from(v: ReadEarlyData<'c, 'i, Data>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'c, 'i, Data> Freeze for ReadEarlyData<'c, 'i, Data>
impl<'c, 'i, Data> !RefUnwindSafe for ReadEarlyData<'c, 'i, Data>
impl<'c, 'i, Data> Send for ReadEarlyData<'c, 'i, Data>where
Data: Send,
impl<'c, 'i, Data> Sync for ReadEarlyData<'c, 'i, Data>where
Data: Sync,
impl<'c, 'i, Data> Unpin for ReadEarlyData<'c, 'i, Data>
impl<'c, 'i, Data> !UnwindSafe for ReadEarlyData<'c, 'i, 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