pub enum Connector {
Http(HttpConnector),
Https(HttpsConnector<HttpConnector>),
}Variants§
Http(HttpConnector)
Https(HttpsConnector<HttpConnector>)
Trait Implementations§
Source§impl Service<Uri> for Connector
Available on crate feature http-client only.
impl Service<Uri> for Connector
Available on crate feature
http-client only.Auto Trait Implementations§
impl !RefUnwindSafe for Connector
impl !UnwindSafe for Connector
impl Freeze for Connector
impl Send for Connector
impl Sync for Connector
impl Unpin for Connector
impl UnsafeUnpin for Connector
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more