pub enum HttpConnector {
Prebuilt(Option<DynConnector>),
ConnectorFn(Arc<MakeConnectorFn>),
}
Expand description
Enum for describing the two “kinds” of HTTP Connectors in smithy-rs.
Variants§
Prebuilt(Option<DynConnector>)
A DynConnector
to be used for all requests.
ConnectorFn(Arc<MakeConnectorFn>)
A factory function that will be used to create new DynConnector
s whenever one is needed.
Implementations§
source§impl HttpConnector
impl HttpConnector
sourcepub fn connector(
&self,
settings: &ConnectorSettings,
sleep: Option<Arc<dyn AsyncSleep>>
) -> Option<DynConnector>
pub fn connector( &self, settings: &ConnectorSettings, sleep: Option<Arc<dyn AsyncSleep>> ) -> Option<DynConnector>
If HttpConnector
is Prebuilt
, return a clone of that connector.
If HttpConnector
is ConnectorFn
, generate a new connector from settings and return it.
Trait Implementations§
source§impl Clone for HttpConnector
impl Clone for HttpConnector
source§fn clone(&self) -> HttpConnector
fn clone(&self) -> HttpConnector
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more