pub struct IoState {
    tls_bytes_to_write: usize,
    plaintext_bytes_to_read: usize,
    peer_has_closed: bool,
}
Expand description

Values of this structure are returned from Connection::process_new_packets and tell the caller the current I/O state of the TLS connection.

Fields§

§tls_bytes_to_write: usize§plaintext_bytes_to_read: usize§peer_has_closed: bool

Implementations§

source§

impl IoState

source

pub fn tls_bytes_to_write(&self) -> usize

How many bytes could be written by Connection::write_tls if called right now. A non-zero value implies CommonState::wants_write.

source

pub fn plaintext_bytes_to_read(&self) -> usize

How many plaintext bytes could be obtained via std::io::Read without further I/O.

source

pub fn peer_has_closed(&self) -> bool

True if the peer has sent us a close_notify alert. This is the TLS mechanism to securely half-close a TLS connection, and signifies that the peer will not send any further data on this connection.

This is also signalled via returning Ok(0) from std::io::Read, after all the received bytes have been retrieved.

Trait Implementations§

source§

impl Debug for IoState

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<IoState> for IoState

source§

fn eq(&self, other: &IoState) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for IoState

source§

impl StructuralEq for IoState

source§

impl StructuralPartialEq for IoState

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.