#[non_exhaustive]pub enum SetupAttemptFlowDirections {
Inbound,
Outbound,
Unknown(String),
}Expand description
Indicates the directions of money movement for which this payment method is intended to be used.
Include inbound if you intend to use the payment method as the origin to pull funds from.
Include outbound if you intend to use the payment method as the destination to send funds to.
You can include both if you intend to use the payment method for both purposes.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Inbound
Outbound
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for SetupAttemptFlowDirections
impl Clone for SetupAttemptFlowDirections
Source§fn clone(&self) -> SetupAttemptFlowDirections
fn clone(&self) -> SetupAttemptFlowDirections
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SetupAttemptFlowDirections
impl Debug for SetupAttemptFlowDirections
Source§impl Display for SetupAttemptFlowDirections
impl Display for SetupAttemptFlowDirections
Source§impl FromStr for SetupAttemptFlowDirections
impl FromStr for SetupAttemptFlowDirections
Source§impl FromValueOpt for SetupAttemptFlowDirections
impl FromValueOpt for SetupAttemptFlowDirections
fn from_value(v: Value) -> Option<Self>
impl Eq for SetupAttemptFlowDirections
impl StructuralPartialEq for SetupAttemptFlowDirections
Auto Trait Implementations§
impl Freeze for SetupAttemptFlowDirections
impl RefUnwindSafe for SetupAttemptFlowDirections
impl Send for SetupAttemptFlowDirections
impl Sync for SetupAttemptFlowDirections
impl Unpin for SetupAttemptFlowDirections
impl UnwindSafe for SetupAttemptFlowDirections
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more