Struct glimesh::http::ConnectionBuilder[][src]

pub struct ConnectionBuilder { /* fields omitted */ }

Configure and build an http Connection.

Usage:

let connection = Connection::builder()
    .user_agent("My App / 0.1.0")
    .build();

Implementations

impl ConnectionBuilder[src]

pub fn build(self, auth: Auth) -> Connection[src]

Build the http connection from the set options.

Panics

This function panics if the TLS backend cannot be initialized, or the resolver cannot load the system configuration.

pub fn user_agent(self, value: impl Into<String>) -> Self[src]

Set the user agent the http client will identify itself as.

This defaults to Glimesh Rust / x.x.x where x.x.x is the version of this package.

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

Set the timeout for requests made to glimesh.

The default is 30 seconds

pub fn api_url(self, value: impl Into<String>) -> Self[src]

Set the base api url used for request. Useful if running Glimesh locally for example.

Defaults to https://glimesh.tv/api

Trait Implementations

impl Debug for ConnectionBuilder[src]

impl Default for ConnectionBuilder[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> Instrument 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.