payrail_core/provider.rs
1/// Supported payment providers.
2#[derive(Debug, Clone, PartialEq, Eq, Hash)]
3#[non_exhaustive]
4pub enum PaymentProvider {
5 /// Stripe.
6 Stripe,
7 /// PayPal.
8 PayPal,
9 /// Lipila.
10 Lipila,
11 /// Circle.
12 Circle,
13 /// Coinbase.
14 Coinbase,
15 /// Bridge.
16 Bridge,
17 /// Binance.
18 Binance,
19 /// A provider not yet modeled directly.
20 Other(String),
21}