rusty_dropbox_sdk 0.8.2

Unofficial SDK for dropbox in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod app;
pub mod user;

use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug)]
pub struct EchoArg {
    pub query: String,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct EchoResult {
    pub result: String,
}