stygian-browser 0.9.2

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_extract_derive::Extract;

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

fn main() {}