Enum easyfix_messages::fields::PaymentMethod  
source · pub enum PaymentMethod {
Show 15 variants
    Crest,
    Nscc,
    Euroclear,
    Clearstream,
    Cheque,
    TelegraphicTransfer,
    FedWire,
    DebitCard,
    DirectDebit,
    DirectCredit,
    CreditCard,
    AchDebit,
    AchCredit,
    Bpay,
    HighValueClearingSystem,
}Variants§
Crest
Nscc
Euroclear
Clearstream
Cheque
TelegraphicTransfer
FedWire
DebitCard
DirectDebit
DirectCredit
CreditCard
AchDebit
AchCredit
Bpay
HighValueClearingSystem
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§fn eq(&self, other: &PaymentMethod) -> bool
 
fn eq(&self, other: &PaymentMethod) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.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
§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(input: Int) -> Result<PaymentMethod, SessionRejectReason>
 
fn try_from(input: Int) -> Result<PaymentMethod, SessionRejectReason>
Performs the conversion.
impl Copy for PaymentMethod
impl Eq for PaymentMethod
impl StructuralEq for PaymentMethod
impl StructuralPartialEq for PaymentMethod
Auto Trait Implementations§
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