torbox-core-rs 0.1.0

Rust SDK Core for the torbox API
Documentation
1
2
3
4
5
6
7
use async_trait::async_trait;
use reqwest::multipart::Form;

#[async_trait]
pub trait ToMultipart {
    async fn to_multipart(self) -> Form;
}