stygian-browser 0.8.1

Anti-detection browser automation library for Rust with CDP stealth features
Documentation
1
2
3
4
5
6
7
8
9
10
//! trybuild: applying #[derive(Extract)] to an enum must produce compile_error!

use stygian_browser::extract::Extract;

#[derive(Extract)]
enum MyEnum {
    Variant,
}

fn main() {}