[][src]Struct harp::connection::Connection

pub struct Connection { /* fields omitted */ }

HTTP connection to a remote host

Methods

impl Connection[src]

pub fn open(
    addr: &str,
    port: u16,
    opts: &ConnectionOptions
) -> Result<Self, Error>
[src]

Create a new connection to an HTTP server

pub fn duration(&self) -> Duration[src]

How long has this connection been open?

pub fn request_count(&self) -> usize[src]

Number of requests we've made since opening connection

pub fn get<P: Into<PathBuf>>(
    &self,
    into_path: P,
    body: &Body
) -> Result<Body, Error>
[src]

Make an HTTP GET request to the given path

pub fn post<P: Into<PathBuf>>(
    &self,
    into_path: P,
    body: &Body
) -> Result<Body, Error>
[src]

Make an HTTP POST request to the given path

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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