[][src]Trait drogue_http_client::Sink

pub trait Sink {
    fn send(&mut self, data: &[u8]) -> Result<usize, ()>;
}

A sink to send HTTP requests to

Required methods

fn send(&mut self, data: &[u8]) -> Result<usize, ()>

Loading content...

Implementations on Foreign Types

impl<N> Sink for Vec<u8, N> where
    N: ArrayLength<u8>, 
[src]

A sink implementation for a buffer.

Loading content...

Implementors

impl<'tcp, T> Sink for TcpSocketSinkSource<'tcp, T> where
    T: TcpStack
[src]

Loading content...