Struct chrome_remote_interface_model::debugger::SetScriptSourceReturnBuilder[][src]

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

Implementations

impl SetScriptSourceReturnBuilder[src]

pub fn call_frames(&mut self, v: Vec<CallFrame>) -> &mut Self[src]

New stack trace in case editing has happened while VM was stopped.

pub fn stack_changed(&mut self, v: bool) -> &mut Self[src]

Whether current call stack was modified after applying the changes.

pub fn async_stack_trace(&mut self, v: StackTrace) -> &mut Self[src]

Async stack trace, if any.

pub fn async_stack_trace_id(&mut self, v: JsonValue) -> &mut Self[src]

This is supported on crate feature experimental only.

Async stack trace, if any.

pub fn exception_details(&mut self, v: ExceptionDetails) -> &mut Self[src]

Exception details if any.

pub fn build(&mut self) -> Result<SetScriptSourceReturn, &'static str>[src]

Trait Implementations

impl Clone for SetScriptSourceReturnBuilder[src]

impl Debug for SetScriptSourceReturnBuilder[src]

impl Default for SetScriptSourceReturnBuilder[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> 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.