1 #![allow(unused_imports)]
2 use super::*;
3 use wasm_bindgen::prelude::*;
4 #[wasm_bindgen]
5 extern "C" {
6     # [wasm_bindgen (extends = :: js_sys :: Object , js_name = CSPReportProperties)]
7     #[derive(Debug, Clone, PartialEq, Eq)]
8     #[doc = "The `CspReportProperties` dictionary."]
9     #[doc = ""]
10     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
11     pub type CspReportProperties;
12 }
13 impl CspReportProperties {
14     #[doc = "Construct a new `CspReportProperties`."]
15     #[doc = ""]
16     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
new() -> Self17     pub fn new() -> Self {
18         #[allow(unused_mut)]
19         let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
20         ret
21     }
22     #[doc = "Change the `blocked-uri` field of this object."]
23     #[doc = ""]
24     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
blocked_uri(&mut self, val: &str) -> &mut Self25     pub fn blocked_uri(&mut self, val: &str) -> &mut Self {
26         use wasm_bindgen::JsValue;
27         let r = ::js_sys::Reflect::set(
28             self.as_ref(),
29             &JsValue::from("blocked-uri"),
30             &JsValue::from(val),
31         );
32         debug_assert!(
33             r.is_ok(),
34             "setting properties should never fail on our dictionary objects"
35         );
36         let _ = r;
37         self
38     }
39     #[doc = "Change the `column-number` field of this object."]
40     #[doc = ""]
41     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
column_number(&mut self, val: i32) -> &mut Self42     pub fn column_number(&mut self, val: i32) -> &mut Self {
43         use wasm_bindgen::JsValue;
44         let r = ::js_sys::Reflect::set(
45             self.as_ref(),
46             &JsValue::from("column-number"),
47             &JsValue::from(val),
48         );
49         debug_assert!(
50             r.is_ok(),
51             "setting properties should never fail on our dictionary objects"
52         );
53         let _ = r;
54         self
55     }
56     #[doc = "Change the `document-uri` field of this object."]
57     #[doc = ""]
58     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
document_uri(&mut self, val: &str) -> &mut Self59     pub fn document_uri(&mut self, val: &str) -> &mut Self {
60         use wasm_bindgen::JsValue;
61         let r = ::js_sys::Reflect::set(
62             self.as_ref(),
63             &JsValue::from("document-uri"),
64             &JsValue::from(val),
65         );
66         debug_assert!(
67             r.is_ok(),
68             "setting properties should never fail on our dictionary objects"
69         );
70         let _ = r;
71         self
72     }
73     #[doc = "Change the `line-number` field of this object."]
74     #[doc = ""]
75     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
line_number(&mut self, val: i32) -> &mut Self76     pub fn line_number(&mut self, val: i32) -> &mut Self {
77         use wasm_bindgen::JsValue;
78         let r = ::js_sys::Reflect::set(
79             self.as_ref(),
80             &JsValue::from("line-number"),
81             &JsValue::from(val),
82         );
83         debug_assert!(
84             r.is_ok(),
85             "setting properties should never fail on our dictionary objects"
86         );
87         let _ = r;
88         self
89     }
90     #[doc = "Change the `original-policy` field of this object."]
91     #[doc = ""]
92     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
original_policy(&mut self, val: &str) -> &mut Self93     pub fn original_policy(&mut self, val: &str) -> &mut Self {
94         use wasm_bindgen::JsValue;
95         let r = ::js_sys::Reflect::set(
96             self.as_ref(),
97             &JsValue::from("original-policy"),
98             &JsValue::from(val),
99         );
100         debug_assert!(
101             r.is_ok(),
102             "setting properties should never fail on our dictionary objects"
103         );
104         let _ = r;
105         self
106     }
107     #[doc = "Change the `referrer` field of this object."]
108     #[doc = ""]
109     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
referrer(&mut self, val: &str) -> &mut Self110     pub fn referrer(&mut self, val: &str) -> &mut Self {
111         use wasm_bindgen::JsValue;
112         let r = ::js_sys::Reflect::set(
113             self.as_ref(),
114             &JsValue::from("referrer"),
115             &JsValue::from(val),
116         );
117         debug_assert!(
118             r.is_ok(),
119             "setting properties should never fail on our dictionary objects"
120         );
121         let _ = r;
122         self
123     }
124     #[doc = "Change the `script-sample` field of this object."]
125     #[doc = ""]
126     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
script_sample(&mut self, val: &str) -> &mut Self127     pub fn script_sample(&mut self, val: &str) -> &mut Self {
128         use wasm_bindgen::JsValue;
129         let r = ::js_sys::Reflect::set(
130             self.as_ref(),
131             &JsValue::from("script-sample"),
132             &JsValue::from(val),
133         );
134         debug_assert!(
135             r.is_ok(),
136             "setting properties should never fail on our dictionary objects"
137         );
138         let _ = r;
139         self
140     }
141     #[doc = "Change the `source-file` field of this object."]
142     #[doc = ""]
143     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
source_file(&mut self, val: &str) -> &mut Self144     pub fn source_file(&mut self, val: &str) -> &mut Self {
145         use wasm_bindgen::JsValue;
146         let r = ::js_sys::Reflect::set(
147             self.as_ref(),
148             &JsValue::from("source-file"),
149             &JsValue::from(val),
150         );
151         debug_assert!(
152             r.is_ok(),
153             "setting properties should never fail on our dictionary objects"
154         );
155         let _ = r;
156         self
157     }
158     #[doc = "Change the `violated-directive` field of this object."]
159     #[doc = ""]
160     #[doc = "*This API requires the following crate features to be activated: `CspReportProperties`*"]
violated_directive(&mut self, val: &str) -> &mut Self161     pub fn violated_directive(&mut self, val: &str) -> &mut Self {
162         use wasm_bindgen::JsValue;
163         let r = ::js_sys::Reflect::set(
164             self.as_ref(),
165             &JsValue::from("violated-directive"),
166             &JsValue::from(val),
167         );
168         debug_assert!(
169             r.is_ok(),
170             "setting properties should never fail on our dictionary objects"
171         );
172         let _ = r;
173         self
174     }
175 }
176 impl Default for CspReportProperties {
default() -> Self177     fn default() -> Self {
178         Self::new()
179     }
180 }
181