payrail-core 0.1.0

Provider-neutral payment abstractions for PayRail
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,
}