rustack-ses-http 0.9.0

SES HTTP service layer for Rustack (awsQuery + restJson1 protocol)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! SES HTTP service layer for Rustack.
//!
//! SES v1 uses the `awsQuery` protocol (same as SNS): requests are
//! `application/x-www-form-urlencoded` with `Action=<op>` dispatch,
//! responses are `text/xml`.
//!
//! SES v2 uses `restJson1` with path-based routing under `/v2/email/`.

pub mod body;
pub mod dispatch;
pub mod request;
pub mod response;
pub mod router;
pub mod service;
pub mod v2;