Struct chrome_remote_interface_model::debugger::CallFrame[][src]

pub struct CallFrame { /* fields omitted */ }
This is supported on crate features Debugger and Runtime only.

JavaScript call frame. Array of call frames form the call stack.

Implementations

impl CallFrame[src]

pub fn builder() -> CallFrameBuilder[src]

pub fn call_frame_id(&self) -> &CallFrameId[src]

Call frame identifier. This identifier is only valid while the virtual machine is paused.

pub fn function_name(&self) -> &str[src]

Name of the JavaScript function called on this call frame.

pub fn function_location(&self) -> Option<&Location>[src]

Location in the source code.

pub fn location(&self) -> &Location[src]

Location in the source code.

pub fn url(&self) -> &str[src]

JavaScript script name or url.

pub fn scope_chain(&self) -> &[Scope]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Scope chain for this call frame.

pub fn this(&self) -> &RemoteObject[src]

this object for this call frame.

pub fn return_value(&self) -> Option<&RemoteObject>[src]

The value being returned, if the function is at return point.

Trait Implementations

impl Clone for CallFrame[src]

impl Debug for CallFrame[src]

impl<'de> Deserialize<'de> for CallFrame[src]

impl Serialize for CallFrame[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.