headless_chrome 0.9.0

Control Chrome programatically
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub type JsInt = i32;

/// For when we specifically want to guard against negative numbers.
pub type JsUInt = u32;

/// For when the docs call for 'number'
pub type JsFloat = f64;

/// Unique script identifier
/// See https://chromedevtools.github.io/devtools-protocol/tot/Runtime#type-ScriptId
pub type ScriptId = String;

/// Experimental
/// See https://chromedevtools.github.io/devtools-protocol/tot/Runtime#type-StackTraceId
pub type UniqueDebuggerId = String;