Struct eventsource_client::ClientBuilder

source ·
pub struct ClientBuilder { /* private fields */ }
Expand description

ClientBuilder provides a series of builder methods to easily construct a Client.

Implementations§

source§

impl ClientBuilder

source

pub fn for_url(url: &str) -> Result<ClientBuilder>

Create a builder for a given URL.

source

pub fn method(self, method: String) -> ClientBuilder

Set the request method used for the initial connection to the SSE endpoint.

source

pub fn body(self, body: String) -> ClientBuilder

Set the request body used for the initial connection to the SSE endpoint.

source

pub fn last_event_id(self, last_event_id: String) -> ClientBuilder

Set the last event id for a stream when it is created. If it is set, it will be sent to the server in case it can replay missed events.

source

pub fn header(self, name: &str, value: &str) -> Result<ClientBuilder>

Set a HTTP header on the SSE request.

source

pub fn read_timeout(self, read_timeout: Duration) -> ClientBuilder

Set a read timeout for the underlying connection. There is no read timeout by default.

source

pub fn reconnect(self, opts: ReconnectOptions) -> ClientBuilder

Configure the client’s reconnect behaviour according to the supplied ReconnectOptions.

source

pub fn redirect_limit(self, limit: u32) -> ClientBuilder

Customize the client’s following behavior when served a redirect. To disable following redirects, pass 0. By default, the limit is DEFAULT_REDIRECT_LIMIT.

source

pub fn build_with_conn<C>(self, conn: C) -> impl Client
where C: Service<Uri> + Clone + Send + Sync + 'static, C::Response: Connection + AsyncRead + AsyncWrite + Send + Unpin, C::Future: Send + 'static, C::Error: Into<Box<dyn Error + Send + Sync>>,

Build with a specific client connector.

source

pub fn build_http(self) -> impl Client

Build with an HTTP client connector.

source

pub fn build(self) -> impl Client

Build with an HTTPS client connector, using the OS root certificate store.

source

pub fn build_with_http_client<C>(self, http: Client<C>) -> impl Client
where C: Connect + Clone + Send + Sync + 'static,

Build with the given hyper::client::Client.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more