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