qbit-api-rs 0.2.0

A asynchronous Rust wrapper for qBittorrent Web API
Documentation
1
2
3
4
5
6
7
8
9

use serde::{self, Serialize};

/// # `/api/v2/auth/login`
#[derive(Debug, Clone, Default, Serialize)]
pub struct LoginForm {
    pub username: String,
    pub password: String,
}