pub type RequestId<'a> = Cow<'a, str>;Expand description
Unique 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),
}