]> git.proxmox.com Git - rustc.git/blob - vendor/web-sys/src/features/gen_DnsCacheDict.rs
New upstream version 1.72.1+dfsg1
[rustc.git] / vendor / web-sys / src / features / gen_DnsCacheDict.rs
1 #![allow(unused_imports)]
2 #![allow(clippy::all)]
3 use super::*;
4 use wasm_bindgen::prelude::*;
5 #[wasm_bindgen]
6 extern "C" {
7 # [wasm_bindgen (extends = :: js_sys :: Object , js_name = DNSCacheDict)]
8 #[derive(Debug, Clone, PartialEq, Eq)]
9 #[doc = "The `DnsCacheDict` dictionary."]
10 #[doc = ""]
11 #[doc = "*This API requires the following crate features to be activated: `DnsCacheDict`*"]
12 pub type DnsCacheDict;
13 }
14 impl DnsCacheDict {
15 #[doc = "Construct a new `DnsCacheDict`."]
16 #[doc = ""]
17 #[doc = "*This API requires the following crate features to be activated: `DnsCacheDict`*"]
18 pub fn new() -> Self {
19 #[allow(unused_mut)]
20 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
21 ret
22 }
23 #[doc = "Change the `entries` field of this object."]
24 #[doc = ""]
25 #[doc = "*This API requires the following crate features to be activated: `DnsCacheDict`*"]
26 pub fn entries(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
27 use wasm_bindgen::JsValue;
28 let r = ::js_sys::Reflect::set(
29 self.as_ref(),
30 &JsValue::from("entries"),
31 &JsValue::from(val),
32 );
33 debug_assert!(
34 r.is_ok(),
35 "setting properties should never fail on our dictionary objects"
36 );
37 let _ = r;
38 self
39 }
40 }
41 impl Default for DnsCacheDict {
42 fn default() -> Self {
43 Self::new()
44 }
45 }