Struct chrome_remote_interface_model::debugger::ScriptFailedToParseEventBuilder[][src]

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

Implementations

impl ScriptFailedToParseEventBuilder[src]

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

Identifier of the script parsed.

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

URL or name of the script parsed (if any).

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

Line offset of the script within the resource with given URL (for script tags).

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

Column offset of the script within the resource with given URL.

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

Last line of the script.

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

Length of the last line of the script.

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

Specifies script creation context.

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

Content hash of the script.

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

Embedder-specific auxiliary data.

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

URL of source map associated with script (if any).

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

True, if this script has sourceURL.

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

True, if this script is ES6 module.

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

This script length.

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

This is supported on crate feature experimental only.

JavaScript top stack frame of where the script parsed event was triggered if available.

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

This is supported on crate feature experimental only.

If the scriptLanguage is WebAssembly, the code section offset in the module.

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

This is supported on crate feature experimental only.

The language of the script.

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

This is supported on crate feature experimental only.

The name the embedder supplied for this script.

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

Trait Implementations

impl Clone for ScriptFailedToParseEventBuilder[src]

impl Debug for ScriptFailedToParseEventBuilder[src]

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