Struct chrome_remote_interface_model::network::InitiatorBuilder[][src]

pub struct InitiatorBuilder { /* fields omitted */ }

Implementations

impl InitiatorBuilder[src]

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

Type of this initiator.

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

Initiator JavaScript stack trace, set for Script only.

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

Initiator URL, set for Parser type or for Script type (when script is importing module) or for SignedExchange type.

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

Initiator line number, set for Parser type or for Script type (when script is importing module) (0-based).

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

Initiator column number, set for Parser type or for Script type (when script is importing module) (0-based).

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

Trait Implementations

impl Clone for InitiatorBuilder[src]

impl Debug for InitiatorBuilder[src]

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