blob: 987420ebc1b842779fb043a3477a5bb88220397b [file] [log] [blame]
#![allow(unused_imports)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = :: js_sys :: Object , js_name = HttpConnInfo)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `HttpConnInfo` dictionary."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HttpConnInfo`*"]
pub type HttpConnInfo;
}
impl HttpConnInfo {
#[doc = "Construct a new `HttpConnInfo`."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HttpConnInfo`*"]
pub fn new() -> Self {
#[allow(unused_mut)]
let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
ret
}
#[doc = "Change the `protocolVersion` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HttpConnInfo`*"]
pub fn protocol_version(&mut self, val: &str) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("protocolVersion"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `rtt` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HttpConnInfo`*"]
pub fn rtt(&mut self, val: u32) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("rtt"), &JsValue::from(val));
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `ttl` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HttpConnInfo`*"]
pub fn ttl(&mut self, val: u32) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("ttl"), &JsValue::from(val));
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
}
impl Default for HttpConnInfo {
fn default() -> Self {
Self::new()
}
}