Skip to main content

RequestId

Type Alias RequestId 

Source
pub type RequestId<'a> = Cow<'a, str>;
Expand description

Unique network request identifier. Note that this does not identify individual HTTP requests that are part of a network request.

Aliased Type§

pub enum RequestId<'a> {
    Borrowed(&'a str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'a str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.