Skip to main content

browser_protocol/runtime/
mod.rs

1use serde::{Serialize, Deserialize};
2pub type RemoteObjectId<'a> = std::borrow::Cow<'a, str>;
3pub type RemoteObject = serde_json::Value;
4pub type ScriptId<'a> = std::borrow::Cow<'a, str>;
5pub type StackTrace = serde_json::Value;
6pub type UniqueDebuggerId<'a> = std::borrow::Cow<'a, str>;
7pub type SearchMatch = serde_json::Value;
8pub type ExecutionContextId = i64;
9pub type Timestamp = f64;