pub enum SettlInstReqRejCode {
UnableToProcessRequest,
UnknownAccount,
NoMatchingSettlementInstructionsFound,
Other,
}
Variants§
UnableToProcessRequest
Value “0”
UnknownAccount
Value “1”
NoMatchingSettlementInstructionsFound
Value “2”
Other
Value “99”
Implementations§
Source§impl SettlInstReqRejCode
impl SettlInstReqRejCode
pub const fn from_bytes(input: &[u8]) -> Option<SettlInstReqRejCode>
pub const fn from_fix_str(input: &FixStr) -> Option<SettlInstReqRejCode>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for SettlInstReqRejCode
impl Clone for SettlInstReqRejCode
Source§fn clone(&self) -> SettlInstReqRejCode
fn clone(&self) -> SettlInstReqRejCode
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 SettlInstReqRejCode
impl Debug for SettlInstReqRejCode
Source§impl Default for SettlInstReqRejCode
impl Default for SettlInstReqRejCode
Source§fn default() -> SettlInstReqRejCode
fn default() -> SettlInstReqRejCode
Returns the “default value” for a type. Read more
Source§impl From<SettlInstReqRejCode> for &'static [u8]
impl From<SettlInstReqRejCode> for &'static [u8]
Source§impl PartialEq for SettlInstReqRejCode
impl PartialEq for SettlInstReqRejCode
Source§impl ToFixString for SettlInstReqRejCode
impl ToFixString for SettlInstReqRejCode
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for SettlInstReqRejCode
impl TryFrom<i64> for SettlInstReqRejCode
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<SettlInstReqRejCode, ParseRejectReason>
fn try_from(input: Int) -> Result<SettlInstReqRejCode, ParseRejectReason>
Performs the conversion.
impl Copy for SettlInstReqRejCode
impl Eq for SettlInstReqRejCode
impl StructuralPartialEq for SettlInstReqRejCode
Auto Trait Implementations§
impl Freeze for SettlInstReqRejCode
impl RefUnwindSafe for SettlInstReqRejCode
impl Send for SettlInstReqRejCode
impl Sync for SettlInstReqRejCode
impl Unpin for SettlInstReqRejCode
impl UnwindSafe for SettlInstReqRejCode
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