@@ -28,55 +28,39 @@ extern "C" {
28
28
#[ doc = "" ]
29
29
#[ doc = "*This API requires the following crate features to be activated: `TransformStream`, `WritableStream`*" ]
30
30
pub fn writable ( this : & TransformStream ) -> WritableStream ;
31
- #[ cfg( web_sys_unstable_apis) ]
32
31
#[ wasm_bindgen( catch, constructor, js_class = "TransformStream" ) ]
33
32
#[ doc = "The `new TransformStream(..)` constructor, creating a new instance of `TransformStream`." ]
34
33
#[ doc = "" ]
35
34
#[ doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream)" ]
36
35
#[ doc = "" ]
37
36
#[ doc = "*This API requires the following crate features to be activated: `TransformStream`*" ]
38
- #[ doc = "" ]
39
- #[ doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as" ]
40
- #[ doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*" ]
41
37
pub fn new ( ) -> Result < TransformStream , JsValue > ;
42
- #[ cfg( web_sys_unstable_apis) ]
43
38
#[ wasm_bindgen( catch, constructor, js_class = "TransformStream" ) ]
44
39
#[ doc = "The `new TransformStream(..)` constructor, creating a new instance of `TransformStream`." ]
45
40
#[ doc = "" ]
46
41
#[ doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream)" ]
47
42
#[ doc = "" ]
48
43
#[ doc = "*This API requires the following crate features to be activated: `TransformStream`*" ]
49
- #[ doc = "" ]
50
- #[ doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as" ]
51
- #[ doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*" ]
52
44
pub fn new_with_transformer ( transformer : & :: js_sys:: Object )
53
45
-> Result < TransformStream , JsValue > ;
54
- #[ cfg( web_sys_unstable_apis) ]
55
46
#[ cfg( feature = "QueuingStrategy" ) ]
56
47
#[ wasm_bindgen( catch, constructor, js_class = "TransformStream" ) ]
57
48
#[ doc = "The `new TransformStream(..)` constructor, creating a new instance of `TransformStream`." ]
58
49
#[ doc = "" ]
59
50
#[ doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream)" ]
60
51
#[ doc = "" ]
61
52
#[ doc = "*This API requires the following crate features to be activated: `QueuingStrategy`, `TransformStream`*" ]
62
- #[ doc = "" ]
63
- #[ doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as" ]
64
- #[ doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*" ]
65
53
pub fn new_with_transformer_and_writable_strategy (
66
54
transformer : & :: js_sys:: Object ,
67
55
writable_strategy : & QueuingStrategy ,
68
56
) -> Result < TransformStream , JsValue > ;
69
- #[ cfg( web_sys_unstable_apis) ]
70
57
#[ cfg( feature = "QueuingStrategy" ) ]
71
58
#[ wasm_bindgen( catch, constructor, js_class = "TransformStream" ) ]
72
59
#[ doc = "The `new TransformStream(..)` constructor, creating a new instance of `TransformStream`." ]
73
60
#[ doc = "" ]
74
61
#[ doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream)" ]
75
62
#[ doc = "" ]
76
63
#[ doc = "*This API requires the following crate features to be activated: `QueuingStrategy`, `TransformStream`*" ]
77
- #[ doc = "" ]
78
- #[ doc = "*This API is unstable and requires `--cfg=web_sys_unstable_apis` to be activated, as" ]
79
- #[ doc = "[described in the `wasm-bindgen` guide](https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html)*" ]
80
64
pub fn new_with_transformer_and_writable_strategy_and_readable_strategy (
81
65
transformer : & :: js_sys:: Object ,
82
66
writable_strategy : & QueuingStrategy ,
0 commit comments