pub enum RegistRejReasonCode {
Show 19 variants
InvalidUnacceptableAccountType,
InvalidUnacceptableTaxExemptType,
InvalidUnacceptableOwnershipType,
InvalidUnacceptableNoRegDetails,
InvalidUnacceptableRegSeqNo,
InvalidUnacceptableRegDetails,
InvalidUnacceptableMailingDetails,
InvalidUnacceptableMailingInstructions,
InvalidUnacceptableInvestorId,
InvalidUnaceeptableInvestorIdSource,
InvalidUnacceptableDateOfBirth,
InvalidUnacceptableInvestorCountryOfResidence,
InvalidUnacceptableNoDistribInstns,
InvalidUnacceptableDistribPercentage,
InvalidUnacceptableDistribPaymentMethod,
InvalidUnacceptableCashDistribAgentAcctName,
InvalidUnacceptableCashDistribAgentCode,
InvalidUnacceptableCashDistribAgentAcctNum,
Other,
}
Variants§
InvalidUnacceptableAccountType
Value “1”
InvalidUnacceptableTaxExemptType
Value “2”
InvalidUnacceptableOwnershipType
Value “3”
InvalidUnacceptableNoRegDetails
Value “4”
InvalidUnacceptableRegSeqNo
Value “5”
InvalidUnacceptableRegDetails
Value “6”
InvalidUnacceptableMailingDetails
Value “7”
InvalidUnacceptableMailingInstructions
Value “8”
InvalidUnacceptableInvestorId
Value “9”
InvalidUnaceeptableInvestorIdSource
Value “10”
InvalidUnacceptableDateOfBirth
Value “11”
InvalidUnacceptableInvestorCountryOfResidence
Value “12”
InvalidUnacceptableNoDistribInstns
Value “13”
InvalidUnacceptableDistribPercentage
Value “14”
InvalidUnacceptableDistribPaymentMethod
Value “15”
InvalidUnacceptableCashDistribAgentAcctName
Value “16”
InvalidUnacceptableCashDistribAgentCode
Value “17”
InvalidUnacceptableCashDistribAgentAcctNum
Value “18”
Other
Value “99”
Implementations§
Source§impl RegistRejReasonCode
impl RegistRejReasonCode
pub const fn from_bytes(input: &[u8]) -> Option<RegistRejReasonCode>
pub const fn from_fix_str(input: &FixStr) -> Option<RegistRejReasonCode>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for RegistRejReasonCode
impl Clone for RegistRejReasonCode
Source§fn clone(&self) -> RegistRejReasonCode
fn clone(&self) -> RegistRejReasonCode
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 RegistRejReasonCode
impl Debug for RegistRejReasonCode
Source§impl Default for RegistRejReasonCode
impl Default for RegistRejReasonCode
Source§fn default() -> RegistRejReasonCode
fn default() -> RegistRejReasonCode
Returns the “default value” for a type. Read more
Source§impl From<RegistRejReasonCode> for &'static [u8]
impl From<RegistRejReasonCode> for &'static [u8]
Source§impl PartialEq for RegistRejReasonCode
impl PartialEq for RegistRejReasonCode
Source§impl ToFixString for RegistRejReasonCode
impl ToFixString for RegistRejReasonCode
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for RegistRejReasonCode
impl TryFrom<i64> for RegistRejReasonCode
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<RegistRejReasonCode, ParseRejectReason>
fn try_from(input: Int) -> Result<RegistRejReasonCode, ParseRejectReason>
Performs the conversion.
impl Copy for RegistRejReasonCode
impl Eq for RegistRejReasonCode
impl StructuralPartialEq for RegistRejReasonCode
Auto Trait Implementations§
impl Freeze for RegistRejReasonCode
impl RefUnwindSafe for RegistRejReasonCode
impl Send for RegistRejReasonCode
impl Sync for RegistRejReasonCode
impl Unpin for RegistRejReasonCode
impl UnwindSafe for RegistRejReasonCode
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