Struct cdp::network::Initiator [] [src]

pub struct Initiator<'a> {
    pub ty: InitiatorType,
    pub stack: Option<StackTrace<'a>>,
    pub url: Option<Cow<'a, str>>,
    pub line_number: Option<f64>,
}

Information about the request initiator.

Fields

Type of this initiator.

Initiator JavaScript stack trace, set for Script only.

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

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

Trait Implementations

impl<'a> Clone for Initiator<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for Initiator<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for Initiator<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.