#![allow(unused_imports)] #![allow(clippy::all)] use super::*; use wasm_bindgen::prelude::*; #[wasm_bindgen] extern "C" { # [wasm_bindgen (extends = :: js_sys :: Object , js_name = BaseComputedKeyframe)] #[derive(Debug, Clone, PartialEq, Eq)] #[doc = "The `BaseComputedKeyframe` dictionary."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`*"] pub type BaseComputedKeyframe; #[cfg(feature = "CompositeOperation")] #[doc = "Get the `composite` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`, `CompositeOperation`*"] #[wasm_bindgen(method, getter = "composite")] pub fn get_composite(this: &BaseComputedKeyframe) -> Option; #[cfg(feature = "CompositeOperation")] #[doc = "Change the `composite` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`, `CompositeOperation`*"] #[wasm_bindgen(method, setter = "composite")] pub fn set_composite(this: &BaseComputedKeyframe, val: Option); #[doc = "Get the `easing` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`*"] #[wasm_bindgen(method, getter = "easing")] pub fn get_easing(this: &BaseComputedKeyframe) -> Option<::alloc::string::String>; #[doc = "Change the `easing` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`*"] #[wasm_bindgen(method, setter = "easing")] pub fn set_easing(this: &BaseComputedKeyframe, val: &str); #[doc = "Get the `offset` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`*"] #[wasm_bindgen(method, getter = "offset")] pub fn get_offset(this: &BaseComputedKeyframe) -> Option; #[doc = "Change the `offset` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`*"] #[wasm_bindgen(method, setter = "offset")] pub fn set_offset(this: &BaseComputedKeyframe, val: Option); #[doc = "Get the `simulateComputeValuesFailure` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`*"] #[wasm_bindgen(method, getter = "simulateComputeValuesFailure")] pub fn get_simulate_compute_values_failure(this: &BaseComputedKeyframe) -> Option; #[doc = "Change the `simulateComputeValuesFailure` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`*"] #[wasm_bindgen(method, setter = "simulateComputeValuesFailure")] pub fn set_simulate_compute_values_failure(this: &BaseComputedKeyframe, val: bool); #[doc = "Get the `computedOffset` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`*"] #[wasm_bindgen(method, getter = "computedOffset")] pub fn get_computed_offset(this: &BaseComputedKeyframe) -> Option; #[doc = "Change the `computedOffset` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`*"] #[wasm_bindgen(method, setter = "computedOffset")] pub fn set_computed_offset(this: &BaseComputedKeyframe, val: f64); } impl BaseComputedKeyframe { #[doc = "Construct a new `BaseComputedKeyframe`."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `BaseComputedKeyframe`*"] pub fn new() -> Self { #[allow(unused_mut)] let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new()); ret } #[cfg(feature = "CompositeOperation")] #[deprecated = "Use `set_composite()` instead."] pub fn composite(&mut self, val: Option) -> &mut Self { self.set_composite(val); self } #[deprecated = "Use `set_easing()` instead."] pub fn easing(&mut self, val: &str) -> &mut Self { self.set_easing(val); self } #[deprecated = "Use `set_offset()` instead."] pub fn offset(&mut self, val: Option) -> &mut Self { self.set_offset(val); self } #[deprecated = "Use `set_simulate_compute_values_failure()` instead."] pub fn simulate_compute_values_failure(&mut self, val: bool) -> &mut Self { self.set_simulate_compute_values_failure(val); self } #[deprecated = "Use `set_computed_offset()` instead."] pub fn computed_offset(&mut self, val: f64) -> &mut Self { self.set_computed_offset(val); self } } impl Default for BaseComputedKeyframe { fn default() -> Self { Self::new() } }