pub enum PaymentMethod {
Show 15 variants
Crest,
Nscc,
Euroclear,
Clearstream,
Cheque,
TelegraphicTransfer,
FedWire,
DebitCard,
DirectDebit,
DirectCredit,
CreditCard,
AchDebit,
AchCredit,
Bpay,
HighValueClearingSystem,
}
Variants§
Crest
Value “1”
Nscc
Value “2”
Euroclear
Value “3”
Clearstream
Value “4”
Cheque
Value “5”
TelegraphicTransfer
Value “6”
FedWire
Value “7”
DebitCard
Value “8”
DirectDebit
Value “9”
DirectCredit
Value “10”
CreditCard
Value “11”
AchDebit
Value “12”
AchCredit
Value “13”
Bpay
Value “14”
HighValueClearingSystem
Value “15”
Implementations§
Source§impl PaymentMethod
impl PaymentMethod
pub const fn from_bytes(input: &[u8]) -> Option<PaymentMethod>
pub const fn from_fix_str(input: &FixStr) -> Option<PaymentMethod>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for PaymentMethod
impl Clone for PaymentMethod
Source§fn clone(&self) -> PaymentMethod
fn clone(&self) -> PaymentMethod
Returns a copy 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 PaymentMethod
impl Debug for PaymentMethod
Source§impl Default for PaymentMethod
impl Default for PaymentMethod
Source§fn default() -> PaymentMethod
fn default() -> PaymentMethod
Returns the “default value” for a type. Read more
Source§impl From<PaymentMethod> for &'static [u8]
impl From<PaymentMethod> for &'static [u8]
Source§impl PartialEq for PaymentMethod
impl PartialEq for PaymentMethod
Source§impl ToFixString for PaymentMethod
impl ToFixString for PaymentMethod
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for PaymentMethod
impl TryFrom<i64> for PaymentMethod
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<PaymentMethod, ParseRejectReason>
fn try_from(input: Int) -> Result<PaymentMethod, ParseRejectReason>
Performs the conversion.
impl Copy for PaymentMethod
impl Eq for PaymentMethod
impl StructuralPartialEq for PaymentMethod
Auto Trait Implementations§
impl Freeze for PaymentMethod
impl RefUnwindSafe for PaymentMethod
impl Send for PaymentMethod
impl Sync for PaymentMethod
impl Unpin for PaymentMethod
impl UnwindSafe for PaymentMethod
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