Skip to content

Commit bb084e5

Browse files
committed
Generate getters for all WebIDL dictionary types
1 parent e8b023c commit bb084e5

File tree

551 files changed

+20676
-5027
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

551 files changed

+20676
-5027
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
* Add bindings for `RTCRtpReceiver.jitterBufferTarget`.
4343
[#3968](https://github.com/rustwasm/wasm-bindgen/pull/3968)
4444

45+
* Generate getters for all WebIDL dictionary types.
46+
[#3993](https://github.com/rustwasm/wasm-bindgen/pull/3993)
47+
4548
### Changed
4649

4750
* Stabilize Web Share API.

crates/web-sys/src/features/gen_AddEventListenerOptions.rs

+21-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,27 @@ extern "C" {
1010
#[doc = ""]
1111
#[doc = "*This API requires the following crate features to be activated: `AddEventListenerOptions`*"]
1212
pub type AddEventListenerOptions;
13+
#[doc = "Get the `capture` field of this object."]
14+
#[doc = ""]
15+
#[doc = "*This API requires the following crate features to be activated: `AddEventListenerOptions`*"]
16+
#[wasm_bindgen(method, getter = "capture")]
17+
pub fn get_capture(this: &AddEventListenerOptions) -> Option<bool>;
1318
#[wasm_bindgen(method, setter = "capture")]
14-
fn capture_shim(this: &AddEventListenerOptions, val: bool);
19+
fn set_capture(this: &AddEventListenerOptions, val: bool);
20+
#[doc = "Get the `once` field of this object."]
21+
#[doc = ""]
22+
#[doc = "*This API requires the following crate features to be activated: `AddEventListenerOptions`*"]
23+
#[wasm_bindgen(method, getter = "once")]
24+
pub fn get_once(this: &AddEventListenerOptions) -> Option<bool>;
1525
#[wasm_bindgen(method, setter = "once")]
16-
fn once_shim(this: &AddEventListenerOptions, val: bool);
26+
fn set_once(this: &AddEventListenerOptions, val: bool);
27+
#[doc = "Get the `passive` field of this object."]
28+
#[doc = ""]
29+
#[doc = "*This API requires the following crate features to be activated: `AddEventListenerOptions`*"]
30+
#[wasm_bindgen(method, getter = "passive")]
31+
pub fn get_passive(this: &AddEventListenerOptions) -> Option<bool>;
1732
#[wasm_bindgen(method, setter = "passive")]
18-
fn passive_shim(this: &AddEventListenerOptions, val: bool);
33+
fn set_passive(this: &AddEventListenerOptions, val: bool);
1934
}
2035
impl AddEventListenerOptions {
2136
#[doc = "Construct a new `AddEventListenerOptions`."]
@@ -30,21 +45,21 @@ impl AddEventListenerOptions {
3045
#[doc = ""]
3146
#[doc = "*This API requires the following crate features to be activated: `AddEventListenerOptions`*"]
3247
pub fn capture(&mut self, val: bool) -> &mut Self {
33-
self.capture_shim(val);
48+
self.set_capture(val);
3449
self
3550
}
3651
#[doc = "Change the `once` field of this object."]
3752
#[doc = ""]
3853
#[doc = "*This API requires the following crate features to be activated: `AddEventListenerOptions`*"]
3954
pub fn once(&mut self, val: bool) -> &mut Self {
40-
self.once_shim(val);
55+
self.set_once(val);
4156
self
4257
}
4358
#[doc = "Change the `passive` field of this object."]
4459
#[doc = ""]
4560
#[doc = "*This API requires the following crate features to be activated: `AddEventListenerOptions`*"]
4661
pub fn passive(&mut self, val: bool) -> &mut Self {
47-
self.passive_shim(val);
62+
self.set_passive(val);
4863
self
4964
}
5065
}

crates/web-sys/src/features/gen_AesCbcParams.rs

+14-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,20 @@ extern "C" {
1010
#[doc = ""]
1111
#[doc = "*This API requires the following crate features to be activated: `AesCbcParams`*"]
1212
pub type AesCbcParams;
13+
#[doc = "Get the `name` field of this object."]
14+
#[doc = ""]
15+
#[doc = "*This API requires the following crate features to be activated: `AesCbcParams`*"]
16+
#[wasm_bindgen(method, getter = "name")]
17+
pub fn get_name(this: &AesCbcParams) -> String;
1318
#[wasm_bindgen(method, setter = "name")]
14-
fn name_shim(this: &AesCbcParams, val: &str);
19+
fn set_name(this: &AesCbcParams, val: &str);
20+
#[doc = "Get the `iv` field of this object."]
21+
#[doc = ""]
22+
#[doc = "*This API requires the following crate features to be activated: `AesCbcParams`*"]
23+
#[wasm_bindgen(method, getter = "iv")]
24+
pub fn get_iv(this: &AesCbcParams) -> ::js_sys::Object;
1525
#[wasm_bindgen(method, setter = "iv")]
16-
fn iv_shim(this: &AesCbcParams, val: &::js_sys::Object);
26+
fn set_iv(this: &AesCbcParams, val: &::js_sys::Object);
1727
}
1828
impl AesCbcParams {
1929
#[doc = "Construct a new `AesCbcParams`."]
@@ -30,14 +40,14 @@ impl AesCbcParams {
3040
#[doc = ""]
3141
#[doc = "*This API requires the following crate features to be activated: `AesCbcParams`*"]
3242
pub fn name(&mut self, val: &str) -> &mut Self {
33-
self.name_shim(val);
43+
self.set_name(val);
3444
self
3545
}
3646
#[doc = "Change the `iv` field of this object."]
3747
#[doc = ""]
3848
#[doc = "*This API requires the following crate features to be activated: `AesCbcParams`*"]
3949
pub fn iv(&mut self, val: &::js_sys::Object) -> &mut Self {
40-
self.iv_shim(val);
50+
self.set_iv(val);
4151
self
4252
}
4353
}

crates/web-sys/src/features/gen_AesCtrParams.rs

+21-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,27 @@ extern "C" {
1010
#[doc = ""]
1111
#[doc = "*This API requires the following crate features to be activated: `AesCtrParams`*"]
1212
pub type AesCtrParams;
13+
#[doc = "Get the `name` field of this object."]
14+
#[doc = ""]
15+
#[doc = "*This API requires the following crate features to be activated: `AesCtrParams`*"]
16+
#[wasm_bindgen(method, getter = "name")]
17+
pub fn get_name(this: &AesCtrParams) -> String;
1318
#[wasm_bindgen(method, setter = "name")]
14-
fn name_shim(this: &AesCtrParams, val: &str);
19+
fn set_name(this: &AesCtrParams, val: &str);
20+
#[doc = "Get the `counter` field of this object."]
21+
#[doc = ""]
22+
#[doc = "*This API requires the following crate features to be activated: `AesCtrParams`*"]
23+
#[wasm_bindgen(method, getter = "counter")]
24+
pub fn get_counter(this: &AesCtrParams) -> ::js_sys::Object;
1525
#[wasm_bindgen(method, setter = "counter")]
16-
fn counter_shim(this: &AesCtrParams, val: &::js_sys::Object);
26+
fn set_counter(this: &AesCtrParams, val: &::js_sys::Object);
27+
#[doc = "Get the `length` field of this object."]
28+
#[doc = ""]
29+
#[doc = "*This API requires the following crate features to be activated: `AesCtrParams`*"]
30+
#[wasm_bindgen(method, getter = "length")]
31+
pub fn get_length(this: &AesCtrParams) -> u8;
1732
#[wasm_bindgen(method, setter = "length")]
18-
fn length_shim(this: &AesCtrParams, val: u8);
33+
fn set_length(this: &AesCtrParams, val: u8);
1934
}
2035
impl AesCtrParams {
2136
#[doc = "Construct a new `AesCtrParams`."]
@@ -33,21 +48,21 @@ impl AesCtrParams {
3348
#[doc = ""]
3449
#[doc = "*This API requires the following crate features to be activated: `AesCtrParams`*"]
3550
pub fn name(&mut self, val: &str) -> &mut Self {
36-
self.name_shim(val);
51+
self.set_name(val);
3752
self
3853
}
3954
#[doc = "Change the `counter` field of this object."]
4055
#[doc = ""]
4156
#[doc = "*This API requires the following crate features to be activated: `AesCtrParams`*"]
4257
pub fn counter(&mut self, val: &::js_sys::Object) -> &mut Self {
43-
self.counter_shim(val);
58+
self.set_counter(val);
4459
self
4560
}
4661
#[doc = "Change the `length` field of this object."]
4762
#[doc = ""]
4863
#[doc = "*This API requires the following crate features to be activated: `AesCtrParams`*"]
4964
pub fn length(&mut self, val: u8) -> &mut Self {
50-
self.length_shim(val);
65+
self.set_length(val);
5166
self
5267
}
5368
}

crates/web-sys/src/features/gen_AesDerivedKeyParams.rs

+14-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,20 @@ extern "C" {
1010
#[doc = ""]
1111
#[doc = "*This API requires the following crate features to be activated: `AesDerivedKeyParams`*"]
1212
pub type AesDerivedKeyParams;
13+
#[doc = "Get the `name` field of this object."]
14+
#[doc = ""]
15+
#[doc = "*This API requires the following crate features to be activated: `AesDerivedKeyParams`*"]
16+
#[wasm_bindgen(method, getter = "name")]
17+
pub fn get_name(this: &AesDerivedKeyParams) -> String;
1318
#[wasm_bindgen(method, setter = "name")]
14-
fn name_shim(this: &AesDerivedKeyParams, val: &str);
19+
fn set_name(this: &AesDerivedKeyParams, val: &str);
20+
#[doc = "Get the `length` field of this object."]
21+
#[doc = ""]
22+
#[doc = "*This API requires the following crate features to be activated: `AesDerivedKeyParams`*"]
23+
#[wasm_bindgen(method, getter = "length")]
24+
pub fn get_length(this: &AesDerivedKeyParams) -> u32;
1525
#[wasm_bindgen(method, setter = "length")]
16-
fn length_shim(this: &AesDerivedKeyParams, val: u32);
26+
fn set_length(this: &AesDerivedKeyParams, val: u32);
1727
}
1828
impl AesDerivedKeyParams {
1929
#[doc = "Construct a new `AesDerivedKeyParams`."]
@@ -30,14 +40,14 @@ impl AesDerivedKeyParams {
3040
#[doc = ""]
3141
#[doc = "*This API requires the following crate features to be activated: `AesDerivedKeyParams`*"]
3242
pub fn name(&mut self, val: &str) -> &mut Self {
33-
self.name_shim(val);
43+
self.set_name(val);
3444
self
3545
}
3646
#[doc = "Change the `length` field of this object."]
3747
#[doc = ""]
3848
#[doc = "*This API requires the following crate features to be activated: `AesDerivedKeyParams`*"]
3949
pub fn length(&mut self, val: u32) -> &mut Self {
40-
self.length_shim(val);
50+
self.set_length(val);
4151
self
4252
}
4353
}

crates/web-sys/src/features/gen_AesGcmParams.rs

+28-8
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,34 @@ extern "C" {
1010
#[doc = ""]
1111
#[doc = "*This API requires the following crate features to be activated: `AesGcmParams`*"]
1212
pub type AesGcmParams;
13+
#[doc = "Get the `name` field of this object."]
14+
#[doc = ""]
15+
#[doc = "*This API requires the following crate features to be activated: `AesGcmParams`*"]
16+
#[wasm_bindgen(method, getter = "name")]
17+
pub fn get_name(this: &AesGcmParams) -> String;
1318
#[wasm_bindgen(method, setter = "name")]
14-
fn name_shim(this: &AesGcmParams, val: &str);
19+
fn set_name(this: &AesGcmParams, val: &str);
20+
#[doc = "Get the `additionalData` field of this object."]
21+
#[doc = ""]
22+
#[doc = "*This API requires the following crate features to be activated: `AesGcmParams`*"]
23+
#[wasm_bindgen(method, getter = "additionalData")]
24+
pub fn get_additional_data(this: &AesGcmParams) -> Option<::js_sys::Object>;
1525
#[wasm_bindgen(method, setter = "additionalData")]
16-
fn additional_data_shim(this: &AesGcmParams, val: &::js_sys::Object);
26+
fn set_additional_data(this: &AesGcmParams, val: &::js_sys::Object);
27+
#[doc = "Get the `iv` field of this object."]
28+
#[doc = ""]
29+
#[doc = "*This API requires the following crate features to be activated: `AesGcmParams`*"]
30+
#[wasm_bindgen(method, getter = "iv")]
31+
pub fn get_iv(this: &AesGcmParams) -> ::js_sys::Object;
1732
#[wasm_bindgen(method, setter = "iv")]
18-
fn iv_shim(this: &AesGcmParams, val: &::js_sys::Object);
33+
fn set_iv(this: &AesGcmParams, val: &::js_sys::Object);
34+
#[doc = "Get the `tagLength` field of this object."]
35+
#[doc = ""]
36+
#[doc = "*This API requires the following crate features to be activated: `AesGcmParams`*"]
37+
#[wasm_bindgen(method, getter = "tagLength")]
38+
pub fn get_tag_length(this: &AesGcmParams) -> Option<u8>;
1939
#[wasm_bindgen(method, setter = "tagLength")]
20-
fn tag_length_shim(this: &AesGcmParams, val: u8);
40+
fn set_tag_length(this: &AesGcmParams, val: u8);
2141
}
2242
impl AesGcmParams {
2343
#[doc = "Construct a new `AesGcmParams`."]
@@ -34,28 +54,28 @@ impl AesGcmParams {
3454
#[doc = ""]
3555
#[doc = "*This API requires the following crate features to be activated: `AesGcmParams`*"]
3656
pub fn name(&mut self, val: &str) -> &mut Self {
37-
self.name_shim(val);
57+
self.set_name(val);
3858
self
3959
}
4060
#[doc = "Change the `additionalData` field of this object."]
4161
#[doc = ""]
4262
#[doc = "*This API requires the following crate features to be activated: `AesGcmParams`*"]
4363
pub fn additional_data(&mut self, val: &::js_sys::Object) -> &mut Self {
44-
self.additional_data_shim(val);
64+
self.set_additional_data(val);
4565
self
4666
}
4767
#[doc = "Change the `iv` field of this object."]
4868
#[doc = ""]
4969
#[doc = "*This API requires the following crate features to be activated: `AesGcmParams`*"]
5070
pub fn iv(&mut self, val: &::js_sys::Object) -> &mut Self {
51-
self.iv_shim(val);
71+
self.set_iv(val);
5272
self
5373
}
5474
#[doc = "Change the `tagLength` field of this object."]
5575
#[doc = ""]
5676
#[doc = "*This API requires the following crate features to be activated: `AesGcmParams`*"]
5777
pub fn tag_length(&mut self, val: u8) -> &mut Self {
58-
self.tag_length_shim(val);
78+
self.set_tag_length(val);
5979
self
6080
}
6181
}

crates/web-sys/src/features/gen_AesKeyAlgorithm.rs

+14-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,20 @@ extern "C" {
1010
#[doc = ""]
1111
#[doc = "*This API requires the following crate features to be activated: `AesKeyAlgorithm`*"]
1212
pub type AesKeyAlgorithm;
13+
#[doc = "Get the `name` field of this object."]
14+
#[doc = ""]
15+
#[doc = "*This API requires the following crate features to be activated: `AesKeyAlgorithm`*"]
16+
#[wasm_bindgen(method, getter = "name")]
17+
pub fn get_name(this: &AesKeyAlgorithm) -> String;
1318
#[wasm_bindgen(method, setter = "name")]
14-
fn name_shim(this: &AesKeyAlgorithm, val: &str);
19+
fn set_name(this: &AesKeyAlgorithm, val: &str);
20+
#[doc = "Get the `length` field of this object."]
21+
#[doc = ""]
22+
#[doc = "*This API requires the following crate features to be activated: `AesKeyAlgorithm`*"]
23+
#[wasm_bindgen(method, getter = "length")]
24+
pub fn get_length(this: &AesKeyAlgorithm) -> u16;
1525
#[wasm_bindgen(method, setter = "length")]
16-
fn length_shim(this: &AesKeyAlgorithm, val: u16);
26+
fn set_length(this: &AesKeyAlgorithm, val: u16);
1727
}
1828
impl AesKeyAlgorithm {
1929
#[doc = "Construct a new `AesKeyAlgorithm`."]
@@ -30,14 +40,14 @@ impl AesKeyAlgorithm {
3040
#[doc = ""]
3141
#[doc = "*This API requires the following crate features to be activated: `AesKeyAlgorithm`*"]
3242
pub fn name(&mut self, val: &str) -> &mut Self {
33-
self.name_shim(val);
43+
self.set_name(val);
3444
self
3545
}
3646
#[doc = "Change the `length` field of this object."]
3747
#[doc = ""]
3848
#[doc = "*This API requires the following crate features to be activated: `AesKeyAlgorithm`*"]
3949
pub fn length(&mut self, val: u16) -> &mut Self {
40-
self.length_shim(val);
50+
self.set_length(val);
4151
self
4252
}
4353
}

crates/web-sys/src/features/gen_AesKeyGenParams.rs

+14-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,20 @@ extern "C" {
1010
#[doc = ""]
1111
#[doc = "*This API requires the following crate features to be activated: `AesKeyGenParams`*"]
1212
pub type AesKeyGenParams;
13+
#[doc = "Get the `name` field of this object."]
14+
#[doc = ""]
15+
#[doc = "*This API requires the following crate features to be activated: `AesKeyGenParams`*"]
16+
#[wasm_bindgen(method, getter = "name")]
17+
pub fn get_name(this: &AesKeyGenParams) -> String;
1318
#[wasm_bindgen(method, setter = "name")]
14-
fn name_shim(this: &AesKeyGenParams, val: &str);
19+
fn set_name(this: &AesKeyGenParams, val: &str);
20+
#[doc = "Get the `length` field of this object."]
21+
#[doc = ""]
22+
#[doc = "*This API requires the following crate features to be activated: `AesKeyGenParams`*"]
23+
#[wasm_bindgen(method, getter = "length")]
24+
pub fn get_length(this: &AesKeyGenParams) -> u16;
1525
#[wasm_bindgen(method, setter = "length")]
16-
fn length_shim(this: &AesKeyGenParams, val: u16);
26+
fn set_length(this: &AesKeyGenParams, val: u16);
1727
}
1828
impl AesKeyGenParams {
1929
#[doc = "Construct a new `AesKeyGenParams`."]
@@ -30,14 +40,14 @@ impl AesKeyGenParams {
3040
#[doc = ""]
3141
#[doc = "*This API requires the following crate features to be activated: `AesKeyGenParams`*"]
3242
pub fn name(&mut self, val: &str) -> &mut Self {
33-
self.name_shim(val);
43+
self.set_name(val);
3444
self
3545
}
3646
#[doc = "Change the `length` field of this object."]
3747
#[doc = ""]
3848
#[doc = "*This API requires the following crate features to be activated: `AesKeyGenParams`*"]
3949
pub fn length(&mut self, val: u16) -> &mut Self {
40-
self.length_shim(val);
50+
self.set_length(val);
4151
self
4252
}
4353
}

crates/web-sys/src/features/gen_Algorithm.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@ extern "C" {
1010
#[doc = ""]
1111
#[doc = "*This API requires the following crate features to be activated: `Algorithm`*"]
1212
pub type Algorithm;
13+
#[doc = "Get the `name` field of this object."]
14+
#[doc = ""]
15+
#[doc = "*This API requires the following crate features to be activated: `Algorithm`*"]
16+
#[wasm_bindgen(method, getter = "name")]
17+
pub fn get_name(this: &Algorithm) -> String;
1318
#[wasm_bindgen(method, setter = "name")]
14-
fn name_shim(this: &Algorithm, val: &str);
19+
fn set_name(this: &Algorithm, val: &str);
1520
}
1621
impl Algorithm {
1722
#[doc = "Construct a new `Algorithm`."]
@@ -27,7 +32,7 @@ impl Algorithm {
2732
#[doc = ""]
2833
#[doc = "*This API requires the following crate features to be activated: `Algorithm`*"]
2934
pub fn name(&mut self, val: &str) -> &mut Self {
30-
self.name_shim(val);
35+
self.set_name(val);
3136
self
3237
}
3338
}

0 commit comments

Comments
 (0)