pub enum PartyIdSource {
Show 18 variants
UkNationalInsuranceOrPensionNumber,
UsSocialSecurityNumber,
UsEmployerOrTaxIdNumber,
AustralianBusinessNumber,
AustralianTaxFileNumber,
KoreanInvestorId,
TaiwaneseQualifiedForeignInvestorIdQfiiFid,
TaiwaneseTradingAcct,
MalaysianCentralDepository,
ChineseInvestorId,
DirectedBrokerThreeCharacterAcronymAsDefinedInIsitcEtcBestPracticeGuidelinesDocument,
Bic,
GenerallyAcceptedMarketParticipantIdentifier,
Proprietary,
IsoCountryCode,
SettlementEntityLocation,
Mic,
CsdParticipantMemberCode,
}
Variants§
UkNationalInsuranceOrPensionNumber
Value “6”
UsSocialSecurityNumber
Value “7”
UsEmployerOrTaxIdNumber
Value “8”
AustralianBusinessNumber
Value “9”
AustralianTaxFileNumber
Value “A”
KoreanInvestorId
Value “1”
TaiwaneseQualifiedForeignInvestorIdQfiiFid
Value “2”
TaiwaneseTradingAcct
Value “3”
MalaysianCentralDepository
Value “4”
ChineseInvestorId
Value “5”
DirectedBrokerThreeCharacterAcronymAsDefinedInIsitcEtcBestPracticeGuidelinesDocument
Value “I”
Bic
Value “B”
GenerallyAcceptedMarketParticipantIdentifier
Value “C”
Proprietary
Value “D”
IsoCountryCode
Value “E”
SettlementEntityLocation
Value “F”
Mic
Value “G”
CsdParticipantMemberCode
Value “H”
Implementations§
Source§impl PartyIdSource
impl PartyIdSource
pub const fn from_bytes(input: &[u8]) -> Option<PartyIdSource>
pub const fn from_fix_str(input: &FixStr) -> Option<PartyIdSource>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for PartyIdSource
impl Clone for PartyIdSource
Source§fn clone(&self) -> PartyIdSource
fn clone(&self) -> PartyIdSource
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 PartyIdSource
impl Debug for PartyIdSource
Source§impl Default for PartyIdSource
impl Default for PartyIdSource
Source§fn default() -> PartyIdSource
fn default() -> PartyIdSource
Returns the “default value” for a type. Read more
Source§impl From<PartyIdSource> for &'static [u8]
impl From<PartyIdSource> for &'static [u8]
Source§impl PartialEq for PartyIdSource
impl PartialEq for PartyIdSource
Source§impl ToFixString for PartyIdSource
impl ToFixString for PartyIdSource
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<u8> for PartyIdSource
impl TryFrom<u8> for PartyIdSource
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Char) -> Result<PartyIdSource, ParseRejectReason>
fn try_from(input: Char) -> Result<PartyIdSource, ParseRejectReason>
Performs the conversion.
impl Copy for PartyIdSource
impl Eq for PartyIdSource
impl StructuralPartialEq for PartyIdSource
Auto Trait Implementations§
impl Freeze for PartyIdSource
impl RefUnwindSafe for PartyIdSource
impl Send for PartyIdSource
impl Sync for PartyIdSource
impl Unpin for PartyIdSource
impl UnwindSafe for PartyIdSource
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