]> git.proxmox.com Git - rustc.git/blob - vendor/web-sys/src/features/gen_BasePropertyIndexedKeyframe.rs
New upstream version 1.72.1+dfsg1
[rustc.git] / vendor / web-sys / src / features / gen_BasePropertyIndexedKeyframe.rs
1 #![allow(unused_imports)]
2 #![allow(clippy::all)]
3 use super::*;
4 use wasm_bindgen::prelude::*;
5 #[wasm_bindgen]
6 extern "C" {
7 # [wasm_bindgen (extends = :: js_sys :: Object , js_name = BasePropertyIndexedKeyframe)]
8 #[derive(Debug, Clone, PartialEq, Eq)]
9 #[doc = "The `BasePropertyIndexedKeyframe` dictionary."]
10 #[doc = ""]
11 #[doc = "*This API requires the following crate features to be activated: `BasePropertyIndexedKeyframe`*"]
12 pub type BasePropertyIndexedKeyframe;
13 }
14 impl BasePropertyIndexedKeyframe {
15 #[doc = "Construct a new `BasePropertyIndexedKeyframe`."]
16 #[doc = ""]
17 #[doc = "*This API requires the following crate features to be activated: `BasePropertyIndexedKeyframe`*"]
18 pub fn new() -> Self {
19 #[allow(unused_mut)]
20 let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
21 ret
22 }
23 #[doc = "Change the `composite` field of this object."]
24 #[doc = ""]
25 #[doc = "*This API requires the following crate features to be activated: `BasePropertyIndexedKeyframe`*"]
26 pub fn composite(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
27 use wasm_bindgen::JsValue;
28 let r = ::js_sys::Reflect::set(
29 self.as_ref(),
30 &JsValue::from("composite"),
31 &JsValue::from(val),
32 );
33 debug_assert!(
34 r.is_ok(),
35 "setting properties should never fail on our dictionary objects"
36 );
37 let _ = r;
38 self
39 }
40 #[doc = "Change the `easing` field of this object."]
41 #[doc = ""]
42 #[doc = "*This API requires the following crate features to be activated: `BasePropertyIndexedKeyframe`*"]
43 pub fn easing(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
44 use wasm_bindgen::JsValue;
45 let r =
46 ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("easing"), &JsValue::from(val));
47 debug_assert!(
48 r.is_ok(),
49 "setting properties should never fail on our dictionary objects"
50 );
51 let _ = r;
52 self
53 }
54 #[doc = "Change the `offset` field of this object."]
55 #[doc = ""]
56 #[doc = "*This API requires the following crate features to be activated: `BasePropertyIndexedKeyframe`*"]
57 pub fn offset(&mut self, val: &::wasm_bindgen::JsValue) -> &mut Self {
58 use wasm_bindgen::JsValue;
59 let r =
60 ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("offset"), &JsValue::from(val));
61 debug_assert!(
62 r.is_ok(),
63 "setting properties should never fail on our dictionary objects"
64 );
65 let _ = r;
66 self
67 }
68 }
69 impl Default for BasePropertyIndexedKeyframe {
70 fn default() -> Self {
71 Self::new()
72 }
73 }