Struct micro_http_async::Connection[][src]

pub struct Connection(_);

Connection

This struct is a helpful struct to handle the nitty gritty of connections, such as reading and writing to the stream

Implementations

impl Connection[src]

pub fn new(stream: TcpStream) -> Self[src]

New

Create a new connection handler from a TcpStream

pub async fn read_to_string(&self) -> String[src]

Read the TcpStream to a String

pub async fn read_to_vec(&self) -> Result<Vec<u8>, Box<dyn Error>>[src]

Read the TcpStream to a Vec<u8>. Returns a Result as we cannot guarantee a successful read.

pub async fn write_string(&mut self, data: String) -> Result<(), Box<dyn Error>>[src]

Write a String value to the TcpStream. Returns a Result as we cannot guarantee a successful write.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.