pub enum ExDestinationIdSource {
Bic,
GenerallyAcceptedMarketParticipantIdentifier,
Proprietary,
IsoCountryCode,
Mic,
}
Variants§
Bic
Value “B”
GenerallyAcceptedMarketParticipantIdentifier
Value “C”
Proprietary
Value “D”
IsoCountryCode
Value “E”
Mic
Value “G”
Implementations§
Source§impl ExDestinationIdSource
impl ExDestinationIdSource
pub const fn from_bytes(input: &[u8]) -> Option<ExDestinationIdSource>
pub const fn from_fix_str(input: &FixStr) -> Option<ExDestinationIdSource>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for ExDestinationIdSource
impl Clone for ExDestinationIdSource
Source§fn clone(&self) -> ExDestinationIdSource
fn clone(&self) -> ExDestinationIdSource
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 ExDestinationIdSource
impl Debug for ExDestinationIdSource
Source§impl Default for ExDestinationIdSource
impl Default for ExDestinationIdSource
Source§fn default() -> ExDestinationIdSource
fn default() -> ExDestinationIdSource
Returns the “default value” for a type. Read more
Source§impl From<ExDestinationIdSource> for &'static [u8]
impl From<ExDestinationIdSource> for &'static [u8]
Source§impl PartialEq for ExDestinationIdSource
impl PartialEq for ExDestinationIdSource
Source§impl ToFixString for ExDestinationIdSource
impl ToFixString for ExDestinationIdSource
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<u8> for ExDestinationIdSource
impl TryFrom<u8> for ExDestinationIdSource
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Char) -> Result<ExDestinationIdSource, ParseRejectReason>
fn try_from(input: Char) -> Result<ExDestinationIdSource, ParseRejectReason>
Performs the conversion.
impl Copy for ExDestinationIdSource
impl Eq for ExDestinationIdSource
impl StructuralPartialEq for ExDestinationIdSource
Auto Trait Implementations§
impl Freeze for ExDestinationIdSource
impl RefUnwindSafe for ExDestinationIdSource
impl Send for ExDestinationIdSource
impl Sync for ExDestinationIdSource
impl Unpin for ExDestinationIdSource
impl UnwindSafe for ExDestinationIdSource
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