Struct esp_idf_svc::http::server::EspHttpRawConnection
source · pub struct EspHttpRawConnection<'a>(/* private fields */);
Implementations§
Trait Implementations§
source§impl<'a> ErrorType for EspHttpRawConnection<'a>
impl<'a> ErrorType for EspHttpRawConnection<'a>
§type Error = EspIOError
type Error = EspIOError
Error type of all the IO operations on this type.
source§impl<'a> RawHandle for EspHttpRawConnection<'a>
impl<'a> RawHandle for EspHttpRawConnection<'a>
source§impl<'a> Read for EspHttpRawConnection<'a>
impl<'a> Read for EspHttpRawConnection<'a>
source§fn read(&mut self, buf: &mut [u8]) -> Result<usize, Self::Error>
fn read(&mut self, buf: &mut [u8]) -> Result<usize, Self::Error>
Read some bytes from this source into the specified buffer, returning how many bytes were read. Read more
source§fn read_exact(
&mut self,
buf: &mut [u8],
) -> Result<(), ReadExactError<Self::Error>>
fn read_exact( &mut self, buf: &mut [u8], ) -> Result<(), ReadExactError<Self::Error>>
Read the exact number of bytes required to fill
buf
. Read moresource§impl<'a> Write for EspHttpRawConnection<'a>
impl<'a> Write for EspHttpRawConnection<'a>
source§fn write(&mut self, buf: &[u8]) -> Result<usize, Self::Error>
fn write(&mut self, buf: &[u8]) -> Result<usize, Self::Error>
Write a buffer into this writer, returning how many bytes were written. Read more
source§fn flush(&mut self) -> Result<(), Self::Error>
fn flush(&mut self) -> Result<(), Self::Error>
Flush this output stream, blocking until all intermediately buffered contents reach their destination.