maxcountryman_web_sys/features/
gen_ConvertCoordinateOptions.rs

1#![allow(unused_imports)]
2use super::*;
3use wasm_bindgen::prelude::*;
4#[wasm_bindgen]
5extern "C" {
6    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = ConvertCoordinateOptions)]
7    #[derive(Debug, Clone, PartialEq, Eq)]
8    #[doc = "The `ConvertCoordinateOptions` dictionary."]
9    #[doc = ""]
10    #[doc = "*This API requires the following crate features to be activated: `ConvertCoordinateOptions`*"]
11    pub type ConvertCoordinateOptions;
12}
13impl ConvertCoordinateOptions {
14    #[doc = "Construct a new `ConvertCoordinateOptions`."]
15    #[doc = ""]
16    #[doc = "*This API requires the following crate features to be activated: `ConvertCoordinateOptions`*"]
17    pub fn new() -> Self {
18        #[allow(unused_mut)]
19        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
20        ret
21    }
22    #[cfg(feature = "CssBoxType")]
23    #[doc = "Change the `fromBox` field of this object."]
24    #[doc = ""]
25    #[doc = "*This API requires the following crate features to be activated: `ConvertCoordinateOptions`, `CssBoxType`*"]
26    pub fn from_box(&mut self, val: CssBoxType) -> &mut Self {
27        use wasm_bindgen::JsValue;
28        let r = ::js_sys::Reflect::set(
29            self.as_ref(),
30            &JsValue::from("fromBox"),
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    #[cfg(feature = "CssBoxType")]
41    #[doc = "Change the `toBox` field of this object."]
42    #[doc = ""]
43    #[doc = "*This API requires the following crate features to be activated: `ConvertCoordinateOptions`, `CssBoxType`*"]
44    pub fn to_box(&mut self, val: CssBoxType) -> &mut Self {
45        use wasm_bindgen::JsValue;
46        let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("toBox"), &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}
55impl Default for ConvertCoordinateOptions {
56    fn default() -> Self {
57        Self::new()
58    }
59}