[][src]Struct rusty_v8::StackFrame

#[repr(C)]pub struct StackFrame(_);

A single JavaScript stack frame.

Implementations

impl StackFrame[src]

pub fn get_line_number(&self) -> usize[src]

Returns the number, 1-based, of the line for the associate function call. This method will return Message::kNoLineNumberInfo if it is unable to retrieve the line number, or if kLineNumber was not passed as an option when capturing the StackTrace.

pub fn get_column(&self) -> usize[src]

Returns the 1-based column offset on the line for the associated function call. This method will return Message::kNoColumnInfo if it is unable to retrieve the column number, or if kColumnOffset was not passed as an option when capturing the StackTrace.

pub fn get_script_id(&self) -> usize[src]

Returns the id of the script for the function for this StackFrame. This method will return Message::kNoScriptIdInfo if it is unable to retrieve the script id, or if kScriptId was not passed as an option when capturing the StackTrace.

pub fn get_script_name<'s>(
    &self,
    scope: &mut HandleScope<'s>
) -> Option<Local<'s, String>>
[src]

Returns the name of the resource that contains the script for the function for this StackFrame.

pub fn get_script_name_or_source_url<'s>(
    &self,
    scope: &mut HandleScope<'s>
) -> Option<Local<'s, String>>
[src]

Returns the name of the resource that contains the script for the function for this StackFrame or sourceURL value if the script name is undefined and its source ends with //# sourceURL=... string or deprecated //@ sourceURL=... string.

pub fn get_function_name<'s>(
    &self,
    scope: &mut HandleScope<'s>
) -> Option<Local<'s, String>>
[src]

Returns the name of the function associated with this stack frame.

pub fn is_eval(&self) -> bool[src]

Returns whether or not the associated function is compiled via a call to eval().

pub fn is_constructor(&self) -> bool[src]

Returns whether or not the associated function is called as a constructor via "new".

pub fn is_wasm(&self) -> bool[src]

Returns whether or not the associated functions is defined in wasm.

pub fn is_user_javascript(&self) -> bool[src]

Returns whether or not the associated function is defined by the user.

Trait Implementations

impl Deref for StackFrame[src]

type Target = Data

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.