mailgun-sdk 0.1.1

MailGun API client written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! API endpoints and their request/response structures.

pub mod get_bounces;
pub mod get_complaints;
pub mod get_events;
pub mod get_stats;
pub mod get_unsubscribes;
pub mod get_whitelists;
pub mod send_message;

/// Structure of pagination data returned by some API endpoints.
#[derive(Debug, Deserialize, Serialize)]
pub struct Paging {
    pub first: Option<String>,
    pub next: String,
    pub previous: String,
    pub last: Option<String>,
}