Skip to main content

web_sys/features/
gen_SvgfeComponentTransferElement.rs

1#![allow(unused_imports)]
2#![allow(clippy::all)]
3use super::*;
4use wasm_bindgen::prelude::*;
5#[wasm_bindgen]
6extern "C" {
7    #[wasm_bindgen(
8        extends = "SvgElement",
9        extends = "Element",
10        extends = "Node",
11        extends = "EventTarget",
12        extends = "::js_sys::Object",
13        js_name = "SVGFEComponentTransferElement",
14        typescript_type = "SVGFEComponentTransferElement"
15    )]
16    #[derive(Debug, Clone, PartialEq, Eq)]
17    #[doc = "The `SvgfeComponentTransferElement` class."]
18    #[doc = ""]
19    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElement)"]
20    #[doc = ""]
21    #[doc = "*This API requires the following crate features to be activated: `SvgfeComponentTransferElement`*"]
22    pub type SvgfeComponentTransferElement;
23    #[cfg(feature = "SvgAnimatedString")]
24    #[wasm_bindgen(
25        method,
26        getter,
27        js_class = "SVGFEComponentTransferElement",
28        js_name = "in1"
29    )]
30    #[doc = "Getter for the `in1` field of this object."]
31    #[doc = ""]
32    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElement/in1)"]
33    #[doc = ""]
34    #[doc = "*This API requires the following crate features to be activated: `SvgAnimatedString`, `SvgfeComponentTransferElement`*"]
35    pub fn in1(this: &SvgfeComponentTransferElement) -> SvgAnimatedString;
36    #[cfg(feature = "SvgAnimatedLength")]
37    #[wasm_bindgen(
38        method,
39        getter,
40        js_class = "SVGFEComponentTransferElement",
41        js_name = "x"
42    )]
43    #[doc = "Getter for the `x` field of this object."]
44    #[doc = ""]
45    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElement/x)"]
46    #[doc = ""]
47    #[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeComponentTransferElement`*"]
48    pub fn x(this: &SvgfeComponentTransferElement) -> SvgAnimatedLength;
49    #[cfg(feature = "SvgAnimatedLength")]
50    #[wasm_bindgen(
51        method,
52        getter,
53        js_class = "SVGFEComponentTransferElement",
54        js_name = "y"
55    )]
56    #[doc = "Getter for the `y` field of this object."]
57    #[doc = ""]
58    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElement/y)"]
59    #[doc = ""]
60    #[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeComponentTransferElement`*"]
61    pub fn y(this: &SvgfeComponentTransferElement) -> SvgAnimatedLength;
62    #[cfg(feature = "SvgAnimatedLength")]
63    #[wasm_bindgen(
64        method,
65        getter,
66        js_class = "SVGFEComponentTransferElement",
67        js_name = "width"
68    )]
69    #[doc = "Getter for the `width` field of this object."]
70    #[doc = ""]
71    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElement/width)"]
72    #[doc = ""]
73    #[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeComponentTransferElement`*"]
74    pub fn width(this: &SvgfeComponentTransferElement) -> SvgAnimatedLength;
75    #[cfg(feature = "SvgAnimatedLength")]
76    #[wasm_bindgen(
77        method,
78        getter,
79        js_class = "SVGFEComponentTransferElement",
80        js_name = "height"
81    )]
82    #[doc = "Getter for the `height` field of this object."]
83    #[doc = ""]
84    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElement/height)"]
85    #[doc = ""]
86    #[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeComponentTransferElement`*"]
87    pub fn height(this: &SvgfeComponentTransferElement) -> SvgAnimatedLength;
88    #[cfg(feature = "SvgAnimatedString")]
89    #[wasm_bindgen(
90        method,
91        getter,
92        js_class = "SVGFEComponentTransferElement",
93        js_name = "result"
94    )]
95    #[doc = "Getter for the `result` field of this object."]
96    #[doc = ""]
97    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElement/result)"]
98    #[doc = ""]
99    #[doc = "*This API requires the following crate features to be activated: `SvgAnimatedString`, `SvgfeComponentTransferElement`*"]
100    pub fn result(this: &SvgfeComponentTransferElement) -> SvgAnimatedString;
101}