payrail 0.1.5

Provider-neutral Rust payments facade for Stripe, PayPal, and Mobile Money
Documentation
1
2
3
4
5
6
7
8
/// Provider environment.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Environment {
    /// Sandbox or test mode.
    Sandbox,
    /// Production or live mode.
    Production,
}