Struct deno_core::error::JsStackFrame
source · pub struct JsStackFrame {Show 14 fields
pub type_name: Option<String>,
pub function_name: Option<String>,
pub method_name: Option<String>,
pub file_name: Option<String>,
pub line_number: Option<i64>,
pub column_number: Option<i64>,
pub eval_origin: Option<String>,
pub is_top_level: Option<bool>,
pub is_eval: bool,
pub is_native: bool,
pub is_constructor: bool,
pub is_async: bool,
pub is_promise_all: bool,
pub promise_index: Option<i64>,
}
Fields§
§type_name: Option<String>
§function_name: Option<String>
§method_name: Option<String>
§file_name: Option<String>
§line_number: Option<i64>
§column_number: Option<i64>
§eval_origin: Option<String>
§is_top_level: Option<bool>
§is_eval: bool
§is_native: bool
§is_constructor: bool
§is_async: bool
§is_promise_all: bool
§promise_index: Option<i64>
Implementations§
Trait Implementations§
source§impl Clone for JsStackFrame
impl Clone for JsStackFrame
source§fn clone(&self) -> JsStackFrame
fn clone(&self) -> JsStackFrame
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for JsStackFrame
impl Debug for JsStackFrame
source§impl<'de> Deserialize<'de> for JsStackFrame
impl<'de> Deserialize<'de> for JsStackFrame
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<JsStackFrame> for JsStackFrame
impl PartialEq<JsStackFrame> for JsStackFrame
source§fn eq(&self, other: &JsStackFrame) -> bool
fn eq(&self, other: &JsStackFrame) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for JsStackFrame
impl Serialize for JsStackFrame
impl Eq for JsStackFrame
impl StructuralEq for JsStackFrame
impl StructuralPartialEq for JsStackFrame
Auto Trait Implementations§
impl RefUnwindSafe for JsStackFrame
impl Send for JsStackFrame
impl Sync for JsStackFrame
impl Unpin for JsStackFrame
impl UnwindSafe for JsStackFrame
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.