web_sys/features/
gen_ProfileTimelineStackFrame.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = ProfileTimelineStackFrame)]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `ProfileTimelineStackFrame` dictionary."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    pub type ProfileTimelineStackFrame;
    #[doc = "Get the `asyncCause` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, getter = "asyncCause")]
    pub fn get_async_cause(this: &ProfileTimelineStackFrame) -> Option<String>;
    #[doc = "Change the `asyncCause` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, setter = "asyncCause")]
    pub fn set_async_cause(this: &ProfileTimelineStackFrame, val: &str);
    #[doc = "Get the `asyncParent` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, getter = "asyncParent")]
    pub fn get_async_parent(this: &ProfileTimelineStackFrame) -> Option<::js_sys::Object>;
    #[doc = "Change the `asyncParent` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, setter = "asyncParent")]
    pub fn set_async_parent(this: &ProfileTimelineStackFrame, val: Option<&::js_sys::Object>);
    #[doc = "Get the `column` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, getter = "column")]
    pub fn get_column(this: &ProfileTimelineStackFrame) -> Option<i32>;
    #[doc = "Change the `column` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, setter = "column")]
    pub fn set_column(this: &ProfileTimelineStackFrame, val: i32);
    #[doc = "Get the `functionDisplayName` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, getter = "functionDisplayName")]
    pub fn get_function_display_name(this: &ProfileTimelineStackFrame) -> Option<String>;
    #[doc = "Change the `functionDisplayName` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, setter = "functionDisplayName")]
    pub fn set_function_display_name(this: &ProfileTimelineStackFrame, val: &str);
    #[doc = "Get the `line` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, getter = "line")]
    pub fn get_line(this: &ProfileTimelineStackFrame) -> Option<i32>;
    #[doc = "Change the `line` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, setter = "line")]
    pub fn set_line(this: &ProfileTimelineStackFrame, val: i32);
    #[doc = "Get the `parent` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, getter = "parent")]
    pub fn get_parent(this: &ProfileTimelineStackFrame) -> Option<::js_sys::Object>;
    #[doc = "Change the `parent` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, setter = "parent")]
    pub fn set_parent(this: &ProfileTimelineStackFrame, val: Option<&::js_sys::Object>);
    #[doc = "Get the `source` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, getter = "source")]
    pub fn get_source(this: &ProfileTimelineStackFrame) -> Option<String>;
    #[doc = "Change the `source` field of this object."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    #[wasm_bindgen(method, setter = "source")]
    pub fn set_source(this: &ProfileTimelineStackFrame, val: &str);
}
impl ProfileTimelineStackFrame {
    #[doc = "Construct a new `ProfileTimelineStackFrame`."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
    pub fn new() -> Self {
        #[allow(unused_mut)]
        let mut ret: Self = ::wasm_bindgen::JsCast::unchecked_into(::js_sys::Object::new());
        ret
    }
    #[deprecated = "Use `set_async_cause()` instead."]
    pub fn async_cause(&mut self, val: &str) -> &mut Self {
        self.set_async_cause(val);
        self
    }
    #[deprecated = "Use `set_async_parent()` instead."]
    pub fn async_parent(&mut self, val: Option<&::js_sys::Object>) -> &mut Self {
        self.set_async_parent(val);
        self
    }
    #[deprecated = "Use `set_column()` instead."]
    pub fn column(&mut self, val: i32) -> &mut Self {
        self.set_column(val);
        self
    }
    #[deprecated = "Use `set_function_display_name()` instead."]
    pub fn function_display_name(&mut self, val: &str) -> &mut Self {
        self.set_function_display_name(val);
        self
    }
    #[deprecated = "Use `set_line()` instead."]
    pub fn line(&mut self, val: i32) -> &mut Self {
        self.set_line(val);
        self
    }
    #[deprecated = "Use `set_parent()` instead."]
    pub fn parent(&mut self, val: Option<&::js_sys::Object>) -> &mut Self {
        self.set_parent(val);
        self
    }
    #[deprecated = "Use `set_source()` instead."]
    pub fn source(&mut self, val: &str) -> &mut Self {
        self.set_source(val);
        self
    }
}
impl Default for ProfileTimelineStackFrame {
    fn default() -> Self {
        Self::new()
    }
}