pub enum AllocRejCode {
UnknownAccount = 0,
IncorrectQuantity = 1,
IncorrectAveragegPrice = 2,
UnknownExecutingBrokerMnemonic = 3,
CommissionDifference = 4,
UnknownOrderId = 5,
UnknownListId = 6,
OtherSeeText = 7,
}
Variants§
UnknownAccount = 0
IncorrectQuantity = 1
IncorrectAveragegPrice = 2
UnknownExecutingBrokerMnemonic = 3
CommissionDifference = 4
UnknownOrderId = 5
UnknownListId = 6
OtherSeeText = 7
Implementations§
Source§impl AllocRejCode
impl AllocRejCode
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for AllocRejCode
impl Clone for AllocRejCode
Source§fn clone(&self) -> AllocRejCode
fn clone(&self) -> AllocRejCode
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 AllocRejCode
impl Debug for AllocRejCode
Source§impl FromStr for AllocRejCode
impl FromStr for AllocRejCode
Source§impl Hash for AllocRejCode
impl Hash for AllocRejCode
Source§impl IntoFixValue for AllocRejCode
impl IntoFixValue for AllocRejCode
Source§impl PartialEq for AllocRejCode
impl PartialEq for AllocRejCode
impl Copy for AllocRejCode
impl Eq for AllocRejCode
impl StructuralPartialEq for AllocRejCode
Auto Trait Implementations§
impl Freeze for AllocRejCode
impl RefUnwindSafe for AllocRejCode
impl Send for AllocRejCode
impl Sync for AllocRejCode
impl Unpin for AllocRejCode
impl UnwindSafe for AllocRejCode
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