[][src]Struct cabot::client::Client

pub struct Client { /* fields omitted */ }

Perform the http query

Methods

impl Client[src]

pub fn new() -> Self[src]

Construct a new Client

pub fn set_ip_version(&mut self, ipv4: bool, ipv6: bool)[src]

Set Address Type authorized for DNS resolution. If every version is set to false, the resolution will failed.

pub fn add_authority(&mut self, authority: &str, sock_addr: &SocketAddr)[src]

Avoid DNS resolution, force an address to be resolve to a given endpoint. authority has the format "host:port".

pub fn execute(&self, request: &Request) -> CabotResult<Response>[src]

Execute the query Request and return the associate Response.

Trait Implementations

impl Default for Client[src]

Auto Trait Implementations

impl Send for Client

impl Unpin for Client

impl Sync for Client

impl UnwindSafe for Client

impl RefUnwindSafe for Client

Blanket Implementations

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.

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

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

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