#![allow(unused_imports)] #![allow(clippy::all)] use super::*; use wasm_bindgen::prelude::*; #[wasm_bindgen] extern "C" { # [wasm_bindgen (extends = :: js_sys :: Object , js_name = ImageEncodeOptions)] #[derive(Debug, Clone, PartialEq, Eq)] #[doc = "The `ImageEncodeOptions` dictionary."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ImageEncodeOptions`*"] pub type ImageEncodeOptions; #[doc = "Get the `quality` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ImageEncodeOptions`*"] #[wasm_bindgen(method, getter = "quality")] pub fn get_quality(this: &ImageEncodeOptions) -> Option; #[doc = "Change the `quality` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ImageEncodeOptions`*"] #[wasm_bindgen(method, setter = "quality")] pub fn set_quality(this: &ImageEncodeOptions, val: f64); #[doc = "Get the `type` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ImageEncodeOptions`*"] #[wasm_bindgen(method, getter = "type")] pub fn get_type(this: &ImageEncodeOptions) -> Option<::alloc::string::String>; #[doc = "Change the `type` field of this object."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ImageEncodeOptions`*"] #[wasm_bindgen(method, setter = "type")] pub fn set_type(this: &ImageEncodeOptions, val: &str); } impl ImageEncodeOptions { #[doc = "Construct a new `ImageEncodeOptions`."] #[doc = ""] #[doc = "*This API requires the following crate features to be activated: `ImageEncodeOptions`*"] pub fn new() -> Self { #[allow(unused_mut)] let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new()); ret } #[deprecated = "Use `set_quality()` instead."] pub fn quality(&mut self, val: f64) -> &mut Self { self.set_quality(val); self } #[deprecated = "Use `set_type()` instead."] pub fn type_(&mut self, val: &str) -> &mut Self { self.set_type(val); self } } impl Default for ImageEncodeOptions { fn default() -> Self { Self::new() } }