#![allow(unused_imports)] #![allow(clippy::all)] use super::*; use wasm_bindgen::prelude::*; #[wasm_bindgen] extern "C" { # [wasm_bindgen (extends = SvgGeometryElement , extends = SvgGraphicsElement , extends = SvgElement , extends = Element , extends = Node , extends = EventTarget , extends = :: js_sys :: Object , js_name = SVGEllipseElement , typescript_type = "SVGEllipseElement")] #[derive(Debug, Clone, PartialEq, Eq)] #[doc = "The `SvgEllipseElement` class."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SvgEllipseElement`*"] pub type SvgEllipseElement; #[cfg(feature = "SvgAnimatedLength")] # [wasm_bindgen (structural , method , getter , js_class = "SVGEllipseElement" , js_name = cx)] #[doc = "Getter for the `cx` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement/cx)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgEllipseElement`*"] pub fn cx(this: &SvgEllipseElement) -> SvgAnimatedLength; #[cfg(feature = "SvgAnimatedLength")] # [wasm_bindgen (structural , method , getter , js_class = "SVGEllipseElement" , js_name = cy)] #[doc = "Getter for the `cy` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement/cy)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgEllipseElement`*"] pub fn cy(this: &SvgEllipseElement) -> SvgAnimatedLength; #[cfg(feature = "SvgAnimatedLength")] # [wasm_bindgen (structural , method , getter , js_class = "SVGEllipseElement" , js_name = rx)] #[doc = "Getter for the `rx` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement/rx)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgEllipseElement`*"] pub fn rx(this: &SvgEllipseElement) -> SvgAnimatedLength; #[cfg(feature = "SvgAnimatedLength")] # [wasm_bindgen (structural , method , getter , js_class = "SVGEllipseElement" , js_name = ry)] #[doc = "Getter for the `ry` field of this object."] #[doc = ""] #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement/ry)"] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgEllipseElement`*"] pub fn ry(this: &SvgEllipseElement) -> SvgAnimatedLength; }