unofficial_appwrite 1.0.0

wrapper on appwrite api -> https://appwrite.io/docs
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

/// Country
#[derive(Debug, Serialize, Deserialize, Clone, Default, PartialEq)]
pub struct Country {
    /// Country name.
    pub name: String,
    /// Country two-character ISO 3166-1 alpha code.
    pub code: String,
}