pub struct OwnedTlsReadStream { /* private fields */ }
Expand description
An owned read half of an acrypted TCP stream
Implementations§
Source§impl OwnedTlsReadStream
impl OwnedTlsReadStream
Sourcepub async fn receive<'buf>(
&self,
buf: &'buf mut [u8],
) -> Result<&'buf mut [u8], Error>
pub async fn receive<'buf>( &self, buf: &'buf mut [u8], ) -> Result<&'buf mut [u8], Error>
Try fill the given buffer with the data that has been received. The written part of the buffer is returned.
Sourcepub async fn receive_with_cancellation<'buf>(
&self,
buf: &'buf mut [u8],
token: &CancellationToken,
) -> Result<&'buf mut [u8], Error>
pub async fn receive_with_cancellation<'buf>( &self, buf: &'buf mut [u8], token: &CancellationToken, ) -> Result<&'buf mut [u8], Error>
Try fill the given buffer with the data that has been received. The written part of the buffer is returned.
Sourcepub async fn receive_exact<'buf>(
&self,
buf: &'buf mut [u8],
) -> Result<(), (Error, &'buf mut [u8])>
pub async fn receive_exact<'buf>( &self, buf: &'buf mut [u8], ) -> Result<(), (Error, &'buf mut [u8])>
Fill the entire buffer with data that has been received. This will wait as long as necessary to fill up the buffer.
If there’s an error while receiving, then the error is returned as well as the part of the buffer that was partially filled with received data.
Sourcepub async fn receive_exact_with_cancellation<'buf>(
&self,
buf: &'buf mut [u8],
token: &CancellationToken,
) -> Result<(), (Error, &'buf mut [u8])>
pub async fn receive_exact_with_cancellation<'buf>( &self, buf: &'buf mut [u8], token: &CancellationToken, ) -> Result<(), (Error, &'buf mut [u8])>
Fill the entire buffer with data that has been received. This will wait as long as necessary to fill up the buffer.
If there’s an error while receiving, then the error is returned as well as the part of the buffer that was partially filled with received data.
Sourcepub async fn deactivate(self) -> Result<(), Error>
pub async fn deactivate(self) -> Result<(), Error>
Deactivates the socket and the LTE link. A normal drop will do the same thing, but blocking.
Trait Implementations§
Source§impl ErrorType for OwnedTlsReadStream
impl ErrorType for OwnedTlsReadStream
Source§impl Read for OwnedTlsReadStream
impl Read for OwnedTlsReadStream
Source§async fn read(&mut self, buf: &mut [u8]) -> Result<usize, Self::Error>
async fn read(&mut self, buf: &mut [u8]) -> Result<usize, Self::Error>
Source§async fn read_exact(
&mut self,
buf: &mut [u8],
) -> Result<(), ReadExactError<Self::Error>>
async fn read_exact( &mut self, buf: &mut [u8], ) -> Result<(), ReadExactError<Self::Error>>
buf
. Read more