summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_ProfileTimelineLayerRect.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/web-sys/src/features/gen_ProfileTimelineLayerRect.rs')
-rw-r--r--vendor/web-sys/src/features/gen_ProfileTimelineLayerRect.rs80
1 files changed, 80 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_ProfileTimelineLayerRect.rs b/vendor/web-sys/src/features/gen_ProfileTimelineLayerRect.rs
new file mode 100644
index 000000000..b16776e3f
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_ProfileTimelineLayerRect.rs
@@ -0,0 +1,80 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = :: js_sys :: Object , js_name = ProfileTimelineLayerRect)]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `ProfileTimelineLayerRect` dictionary."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineLayerRect`*"]
+ pub type ProfileTimelineLayerRect;
+}
+impl ProfileTimelineLayerRect {
+ #[doc = "Construct a new `ProfileTimelineLayerRect`."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineLayerRect`*"]
+ pub fn new() -> Self {
+ #[allow(unused_mut)]
+ let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
+ ret
+ }
+ #[doc = "Change the `height` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineLayerRect`*"]
+ pub fn height(&mut self, val: i32) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r =
+ ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("height"), &JsValue::from(val));
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[doc = "Change the `width` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineLayerRect`*"]
+ pub fn width(&mut self, val: i32) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("width"), &JsValue::from(val));
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[doc = "Change the `x` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineLayerRect`*"]
+ pub fn x(&mut self, val: i32) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("x"), &JsValue::from(val));
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+ #[doc = "Change the `y` field of this object."]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineLayerRect`*"]
+ pub fn y(&mut self, val: i32) -> &mut Self {
+ use wasm_bindgen::JsValue;
+ let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("y"), &JsValue::from(val));
+ debug_assert!(
+ r.is_ok(),
+ "setting properties should never fail on our dictionary objects"
+ );
+ let _ = r;
+ self
+ }
+}
+impl Default for ProfileTimelineLayerRect {
+ fn default() -> Self {
+ Self::new()
+ }
+}