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