pub type IssueId<'a> = Cow<'a, str>;Expand description
A unique id for a DevTools inspector issue. Allows other entities (e.g. exceptions, CDP message, console messages, etc.) to reference an issue.
Aliased Type§
pub enum IssueId<'a> {
Borrowed(&'a str),
Owned(String),
}