blob: 79bd3b74f2d6e075f273d70dfcf8e388c7e929a1 [file] [log] [blame]
#![allow(unused_imports)]
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;
}
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
}
#[doc = "Change the `asyncCause` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
pub fn async_cause(&mut self, val: &str) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("asyncCause"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `asyncParent` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
pub fn async_parent(&mut self, val: Option<&::js_sys::Object>) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("asyncParent"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `column` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
pub fn column(&mut self, val: i32) -> &mut Self {
use wasm_bindgen::JsValue;
let r =
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("column"), &JsValue::from(val));
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `functionDisplayName` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
pub fn function_display_name(&mut self, val: &str) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(
self.as_ref(),
&JsValue::from("functionDisplayName"),
&JsValue::from(val),
);
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `line` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
pub fn line(&mut self, val: i32) -> &mut Self {
use wasm_bindgen::JsValue;
let r = ::js_sys::Reflect::set(self.as_ref(), &JsValue::from("line"), &JsValue::from(val));
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `parent` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
pub fn parent(&mut self, val: Option<&::js_sys::Object>) -> &mut Self {
use wasm_bindgen::JsValue;
let r =
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("parent"), &JsValue::from(val));
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
#[doc = "Change the `source` field of this object."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ProfileTimelineStackFrame`*"]
pub fn source(&mut self, val: &str) -> &mut Self {
use wasm_bindgen::JsValue;
let r =
::js_sys::Reflect::set(self.as_ref(), &JsValue::from("source"), &JsValue::from(val));
debug_assert!(
r.is_ok(),
"setting properties should never fail on our dictionary objects"
);
let _ = r;
self
}
}
impl Default for ProfileTimelineStackFrame {
fn default() -> Self {
Self::new()
}
}