pub enum TradeRequestType {
AdvisoriesThatMatchCriteria = 4,
UnreportedTradesThatMatchCriteria = 3,
UnmatchedTradesThatMatchCriteria = 2,
MatchedTradesMatchingCriteria = 1,
AllTrades = 0,
}
Variants§
AdvisoriesThatMatchCriteria = 4
UnreportedTradesThatMatchCriteria = 3
UnmatchedTradesThatMatchCriteria = 2
MatchedTradesMatchingCriteria = 1
AllTrades = 0
Implementations§
Source§impl TradeRequestType
impl TradeRequestType
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for TradeRequestType
impl Clone for TradeRequestType
Source§fn clone(&self) -> TradeRequestType
fn clone(&self) -> TradeRequestType
Returns a duplicate 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 TradeRequestType
impl Debug for TradeRequestType
Source§impl FromStr for TradeRequestType
impl FromStr for TradeRequestType
Source§impl Hash for TradeRequestType
impl Hash for TradeRequestType
Source§impl IntoFixValue for TradeRequestType
impl IntoFixValue for TradeRequestType
Source§impl PartialEq for TradeRequestType
impl PartialEq for TradeRequestType
impl Copy for TradeRequestType
impl Eq for TradeRequestType
impl StructuralPartialEq for TradeRequestType
Auto Trait Implementations§
impl Freeze for TradeRequestType
impl RefUnwindSafe for TradeRequestType
impl Send for TradeRequestType
impl Sync for TradeRequestType
impl Unpin for TradeRequestType
impl UnwindSafe for TradeRequestType
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