unofficial_appwrite 1.0.0

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

use super::function::Func;

/// Functions List
#[derive(Debug, Serialize, Deserialize, Clone, Default, PartialEq)]
pub struct FunctionList {
    /// Total number of functions documents that matched your query.
    pub total: u64,
    /// List of functions.
    pub functions: Vec<Func>,
}