Skip to main content

browser_protocol/heapprofiler/
mod.rs

1use serde::{Serialize, Deserialize};
2pub type RemoteObjectId = String;
3pub type RemoteObject = serde_json::Value;
4pub type ScriptId = String;
5pub type StackTrace = serde_json::Value;
6pub type UniqueDebuggerId = String;
7pub type SearchMatch = serde_json::Value;
8pub type ExecutionContextId = i64;
9pub type Timestamp = f64;