Struct EncodeTlsData
pub struct EncodeTlsData<'c, Data> { /* private fields */ }Available on crate feature
tls only.Expand description
A handshake record must be encoded
Implementations§
§impl<'c, Data> EncodeTlsData<'c, Data>
impl<'c, Data> EncodeTlsData<'c, Data>
pub fn encode(&mut self, outgoing_tls: &mut [u8]) -> Result<usize, EncodeError>
pub fn encode(&mut self, outgoing_tls: &mut [u8]) -> Result<usize, EncodeError>
Encodes a handshake record into the outgoing_tls buffer
Returns the number of bytes that were written into outgoing_tls, or an error if
the provided buffer is too small. In the error case, outgoing_tls is not modified
Trait Implementations§
§impl<'c, Data> From<EncodeTlsData<'c, Data>> for ConnectionState<'c, '_, Data>
impl<'c, Data> From<EncodeTlsData<'c, Data>> for ConnectionState<'c, '_, Data>
§fn from(v: EncodeTlsData<'c, Data>) -> ConnectionState<'c, '_, Data>
fn from(v: EncodeTlsData<'c, Data>) -> ConnectionState<'c, '_, Data>
Converts to this type from the input type.
Auto Trait Implementations§
impl<'c, Data> Freeze for EncodeTlsData<'c, Data>
impl<'c, Data> !RefUnwindSafe for EncodeTlsData<'c, Data>
impl<'c, Data> Send for EncodeTlsData<'c, Data>where
Data: Send,
impl<'c, Data> Sync for EncodeTlsData<'c, Data>where
Data: Sync,
impl<'c, Data> Unpin for EncodeTlsData<'c, Data>
impl<'c, Data> !UnwindSafe for EncodeTlsData<'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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more