cdp-use-rs 0.1.1

Type-safe Chrome DevTools Protocol client for Rust with auto-generated bindings from official CDP specs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod client;
pub mod error;

// Include the generated CDP protocol bindings.
// This module is produced by build.rs from the protocol JSON specs.
mod generated {
    #![allow(dead_code, unused_imports, clippy::enum_variant_names)]
    include!(concat!(env!("OUT_DIR"), "/generated.rs"));
}

pub use client::{CdpClient, CdpClientConfig};
pub use error::CdpError;
pub use generated::*;