commafeed_api 0.4.0

API client for commafeed server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct ProfileModificationRequest {
    #[serde(rename = "currentPassword")]
    pub current_password: String,
    pub email: Option<String>,
    #[serde(rename = "newPassword")]
    pub new_password: Option<String>,
    #[serde(rename = "newApiKey")]
    pub new_api_key: bool,
}