postmark 2.0.1

Postmark rust client
Documentation
1
2
3
4
5
6
7
8
9
10
//! Data Removal API endpoints.

mod create_data_removal;
mod get_data_removal_status;
use crate::api::types::id_type;

pub use create_data_removal::*;
pub use get_data_removal_status::*;

id_type!(pub DataRemovalId);