[][src]Struct jsonrpc::simple_http::Builder

pub struct Builder { /* fields omitted */ }

Builder for simple bitcoind SimpleHttpTransports

Implementations

impl Builder[src]

pub fn new() -> Builder[src]

Construct new Builder with default configuration

pub fn timeout(self, timeout: Duration) -> Self[src]

Sets the timeout after which requests will abort if they aren't finished

pub fn url(self, url: &str) -> Result<Self, Error>[src]

Set the URL of the server to the transport.

pub fn auth<S: AsRef<str>>(self, user: S, pass: Option<S>) -> Self[src]

Add authentication information to the transport.

pub fn cookie_auth<S: AsRef<str>>(self, cookie: S) -> Self[src]

Add authentication information to the transport using a cookie string ('user:pass')

pub fn build(self) -> SimpleHttpTransport[src]

Builds the final SimpleHttpTransport

Trait Implementations

impl Clone for Builder[src]

impl Debug for Builder[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.