Skip to main content

HyperTransport

Struct HyperTransport 

Source
pub struct HyperTransport<C = ProxyConnector<TimeoutConnector<HttpConnector>>> { /* private fields */ }
Expand description

A transport implementation using hyper v1.x

This struct wraps a hyper client and implements the HttpTransport trait.

§Timeout Support

All three timeout types are fully supported via hyper-timeout:

  • connect_timeout - Timeout for establishing the TCP connection
  • read_timeout - Timeout for reading data from the connection
  • write_timeout - Timeout for writing data to the connection

Timeouts are configured using the builder pattern. See HyperTransportBuilder for details.

§Example

use launchdarkly_sdk_transport::HyperTransport;

// Create transport with default HTTP connector
let _transport = HyperTransport::new()?;

Implementations§

Source§

impl HyperTransport

Source

pub fn new() -> Result<Self, Error>

Create a new HyperTransport with default HTTP connector and no timeouts

This creates a basic HTTP-only client that supports both HTTP/1 and HTTP/2. For HTTPS support or timeout configuration, use HyperTransport::builder().

Source

pub fn new_https() -> Result<HyperTransport<ProxyConnector<TimeoutConnector<HttpsConnector<HttpConnector>>>>, Error>

Create a new HyperTransport with HTTPS support using hyper-tls

This creates an HTTPS client that supports both HTTP/1 and HTTP/2 protocols using the native TLS implementation. The transport can handle both HTTP and HTTPS connections.

This method is only available when the native-tls feature is enabled.

For timeout configuration or custom TLS settings, use HyperTransport::builder() instead.

Source

pub fn builder() -> HyperTransportBuilder

Create a new builder for configuring HyperTransport

The builder allows you to configure timeouts and choose between HTTP and HTTPS connectors.

§Example
use launchdarkly_sdk_transport::HyperTransport;
use std::time::Duration;

let transport = HyperTransport::builder()
    .connect_timeout(Duration::from_secs(10))
    .read_timeout(Duration::from_secs(30))
    .build_http();

Trait Implementations§

Source§

impl<C: Clone> Clone for HyperTransport<C>

Source§

fn clone(&self) -> HyperTransport<C>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<C> HttpTransport for HyperTransport<C>
where C: Connect + Clone + Send + Sync + 'static,

Source§

fn request( &self, request: Request<Option<Bytes>>, ) -> Pin<Box<dyn Future<Output = Result<Response<ByteStream>, TransportError>> + Send + Sync + 'static>>

Execute an HTTP request and return a streaming response. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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<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