web_sys/features/
gen_DomQuadJson.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = DOMQuadJSON)]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `DomQuadJson` dictionary."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomQuadJson`*"]
    pub type DomQuadJson;
    #[cfg(feature = "DomPoint")]
    #[doc = "Get the `p1` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomPoint`, `DomQuadJson`*"]
    #[wasm_bindgen(method, getter = "p1")]
    pub fn get_p1(this: &DomQuadJson) -> Option<DomPoint>;
    #[cfg(feature = "DomPoint")]
    #[doc = "Change the `p1` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomPoint`, `DomQuadJson`*"]
    #[wasm_bindgen(method, setter = "p1")]
    pub fn set_p1(this: &DomQuadJson, val: &DomPoint);
    #[cfg(feature = "DomPoint")]
    #[doc = "Get the `p2` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomPoint`, `DomQuadJson`*"]
    #[wasm_bindgen(method, getter = "p2")]
    pub fn get_p2(this: &DomQuadJson) -> Option<DomPoint>;
    #[cfg(feature = "DomPoint")]
    #[doc = "Change the `p2` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomPoint`, `DomQuadJson`*"]
    #[wasm_bindgen(method, setter = "p2")]
    pub fn set_p2(this: &DomQuadJson, val: &DomPoint);
    #[cfg(feature = "DomPoint")]
    #[doc = "Get the `p3` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomPoint`, `DomQuadJson`*"]
    #[wasm_bindgen(method, getter = "p3")]
    pub fn get_p3(this: &DomQuadJson) -> Option<DomPoint>;
    #[cfg(feature = "DomPoint")]
    #[doc = "Change the `p3` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomPoint`, `DomQuadJson`*"]
    #[wasm_bindgen(method, setter = "p3")]
    pub fn set_p3(this: &DomQuadJson, val: &DomPoint);
    #[cfg(feature = "DomPoint")]
    #[doc = "Get the `p4` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomPoint`, `DomQuadJson`*"]
    #[wasm_bindgen(method, getter = "p4")]
    pub fn get_p4(this: &DomQuadJson) -> Option<DomPoint>;
    #[cfg(feature = "DomPoint")]
    #[doc = "Change the `p4` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomPoint`, `DomQuadJson`*"]
    #[wasm_bindgen(method, setter = "p4")]
    pub fn set_p4(this: &DomQuadJson, val: &DomPoint);
}
impl DomQuadJson {
    #[doc = "Construct a new `DomQuadJson`."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomQuadJson`*"]
    pub fn new() -> Self {
        #[allow(unused_mut)]
        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
        ret
    }
    #[cfg(feature = "DomPoint")]
    #[deprecated = "Use `set_p1()` instead."]
    pub fn p1(&mut self, val: &DomPoint) -> &mut Self {
        self.set_p1(val);
        self
    }
    #[cfg(feature = "DomPoint")]
    #[deprecated = "Use `set_p2()` instead."]
    pub fn p2(&mut self, val: &DomPoint) -> &mut Self {
        self.set_p2(val);
        self
    }
    #[cfg(feature = "DomPoint")]
    #[deprecated = "Use `set_p3()` instead."]
    pub fn p3(&mut self, val: &DomPoint) -> &mut Self {
        self.set_p3(val);
        self
    }
    #[cfg(feature = "DomPoint")]
    #[deprecated = "Use `set_p4()` instead."]
    pub fn p4(&mut self, val: &DomPoint) -> &mut Self {
        self.set_p4(val);
        self
    }
}
impl Default for DomQuadJson {
    fn default() -> Self {
        Self::new()
    }
}