captcha_oxide 6.0.0

Library for interacting with the 2Captcha API to solve captcha puzzles
Documentation
1
2
3
4
5
6
7
8
9
10
use std::net::IpAddr;

use serde::Serialize;

#[derive(Debug, Serialize)]
#[serde(untagged)]
pub enum Address<'a> {
    IpAddress(IpAddr),
    HostName(&'a str),
}