pub struct HttpConnection {
pub url: String,
pub headers: HashMap<String, String>,
}Expand description
HTTP (Streamable HTTP) transport connection config.
Fields§
§url: String§headers: HashMap<String, String>Trait Implementations§
Source§impl Clone for HttpConnection
impl Clone for HttpConnection
Source§fn clone(&self) -> HttpConnection
fn clone(&self) -> HttpConnection
Returns a duplicate 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 moreSource§impl Debug for HttpConnection
impl Debug for HttpConnection
Source§impl<'de> Deserialize<'de> for HttpConnection
impl<'de> Deserialize<'de> for HttpConnection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HttpConnection
impl RefUnwindSafe for HttpConnection
impl Send for HttpConnection
impl Sync for HttpConnection
impl Unpin for HttpConnection
impl UnsafeUnpin for HttpConnection
impl UnwindSafe for HttpConnection
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