#[repr(C)]pub struct StackTrace(/* private fields */);
Expand description
Representation of a JavaScript stack trace. The information collected is a snapshot of the execution stack and the information remains valid after execution continues.
Implementations§
Source§impl StackTrace
impl StackTrace
Sourcepub fn get_frame_count(&self) -> usize
pub fn get_frame_count(&self) -> usize
Returns the number of StackFrames.
Sourcepub fn get_frame<'s>(
&self,
scope: &mut HandleScope<'s>,
index: usize,
) -> Option<Local<'s, StackFrame>>
pub fn get_frame<'s>( &self, scope: &mut HandleScope<'s>, index: usize, ) -> Option<Local<'s, StackFrame>>
Returns a StackFrame at a particular index.
Methods from Deref<Target = Data>§
Sourcepub fn get_hash(&self) -> int
pub fn get_hash(&self) -> int
Returns the V8 hash value for this value. The current implementation uses a hidden property to store the identity hash on some object types.
The return value will never be 0. Also, it is not guaranteed to be unique.
Sourcepub fn is_private(&self) -> bool
pub fn is_private(&self) -> bool
Returns true if this data is a Private
.
Sourcepub fn is_object_template(&self) -> bool
pub fn is_object_template(&self) -> bool
Returns true if this data is an ObjectTemplate
Sourcepub fn is_function_template(&self) -> bool
pub fn is_function_template(&self) -> bool
Returns true if this data is a FunctionTemplate.
Trait Implementations§
Source§impl Debug for StackTrace
impl Debug for StackTrace
Source§impl Hash for StackTrace
impl Hash for StackTrace
Source§impl<'s> PartialEq<Data> for StackTrace
impl<'s> PartialEq<Data> for StackTrace
Source§impl<'s> PartialEq<StackTrace> for Data
impl<'s> PartialEq<StackTrace> for Data
Source§impl<'s> PartialEq for StackTrace
impl<'s> PartialEq for StackTrace
Source§impl Deref for StackTrace
impl Deref for StackTrace
impl Eq for StackTrace
Auto Trait Implementations§
impl Freeze for StackTrace
impl RefUnwindSafe for StackTrace
impl Send for StackTrace
impl Sync for StackTrace
impl Unpin for StackTrace
impl UnwindSafe for StackTrace
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more