pub enum CustOrderCapacity {
MemberTradingForTheirOwnAccount = 1,
ClearingFirmTradingForItsProprietaryAccount = 2,
MemberTradingForAnotherMember = 3,
AllOther = 4,
}Variants§
MemberTradingForTheirOwnAccount = 1
ClearingFirmTradingForItsProprietaryAccount = 2
MemberTradingForAnotherMember = 3
AllOther = 4
Implementations§
source§impl CustOrderCapacity
impl CustOrderCapacity
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
source§impl Clone for CustOrderCapacity
impl Clone for CustOrderCapacity
source§fn clone(&self) -> CustOrderCapacity
fn clone(&self) -> CustOrderCapacity
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 CustOrderCapacity
impl Debug for CustOrderCapacity
source§impl FromStr for CustOrderCapacity
impl FromStr for CustOrderCapacity
source§impl Hash for CustOrderCapacity
impl Hash for CustOrderCapacity
source§impl IntoFixValue for CustOrderCapacity
impl IntoFixValue for CustOrderCapacity
source§impl PartialEq for CustOrderCapacity
impl PartialEq for CustOrderCapacity
source§fn eq(&self, other: &CustOrderCapacity) -> bool
fn eq(&self, other: &CustOrderCapacity) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for CustOrderCapacity
impl Eq for CustOrderCapacity
impl StructuralPartialEq for CustOrderCapacity
Auto Trait Implementations§
impl RefUnwindSafe for CustOrderCapacity
impl Send for CustOrderCapacity
impl Sync for CustOrderCapacity
impl Unpin for CustOrderCapacity
impl UnwindSafe for CustOrderCapacity
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