#[non_exhaustive]pub enum TopupResourceUsBankAccountNetwork {
Ach,
Unknown(String),
}Expand description
The US bank transfer network used for this top-up. The default is ach.
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.
Implementations§
Trait Implementations§
Source§impl Clone for TopupResourceUsBankAccountNetwork
impl Clone for TopupResourceUsBankAccountNetwork
Source§fn clone(&self) -> TopupResourceUsBankAccountNetwork
fn clone(&self) -> TopupResourceUsBankAccountNetwork
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TopupResourceUsBankAccountNetwork
Available on non-crate feature redact-generated-debug only.
impl Debug for TopupResourceUsBankAccountNetwork
Available on non-crate feature
redact-generated-debug only.impl Eq for TopupResourceUsBankAccountNetwork
Source§impl FromValueOpt for TopupResourceUsBankAccountNetwork
impl FromValueOpt for TopupResourceUsBankAccountNetwork
fn from_value(v: Value) -> Option<Self>
impl StructuralPartialEq for TopupResourceUsBankAccountNetwork
Auto Trait Implementations§
impl Freeze for TopupResourceUsBankAccountNetwork
impl RefUnwindSafe for TopupResourceUsBankAccountNetwork
impl Send for TopupResourceUsBankAccountNetwork
impl Sync for TopupResourceUsBankAccountNetwork
impl Unpin for TopupResourceUsBankAccountNetwork
impl UnsafeUnpin for TopupResourceUsBankAccountNetwork
impl UnwindSafe for TopupResourceUsBankAccountNetwork
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