pub enum ClearingInstruction {
ManualMode = 8,
MultilateralNetting = 5,
AutomaticPostingMode = 9,
BilateralNettingOnly = 2,
ClearAgainstCentralCounterparty = 6,
AutomaticGiveUpMode = 10,
SpecialTrade = 4,
ExClearing = 3,
ProcessNormally = 0,
ExcludeFromCentralCounterparty = 7,
ExcludeFromAllNetting = 1,
}
Variants§
ManualMode = 8
MultilateralNetting = 5
AutomaticPostingMode = 9
BilateralNettingOnly = 2
ClearAgainstCentralCounterparty = 6
AutomaticGiveUpMode = 10
SpecialTrade = 4
ExClearing = 3
ProcessNormally = 0
ExcludeFromCentralCounterparty = 7
ExcludeFromAllNetting = 1
Implementations§
Source§impl ClearingInstruction
impl ClearingInstruction
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for ClearingInstruction
impl Clone for ClearingInstruction
Source§fn clone(&self) -> ClearingInstruction
fn clone(&self) -> ClearingInstruction
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 ClearingInstruction
impl Debug for ClearingInstruction
Source§impl FromStr for ClearingInstruction
impl FromStr for ClearingInstruction
Source§impl Hash for ClearingInstruction
impl Hash for ClearingInstruction
Source§impl IntoFixValue for ClearingInstruction
impl IntoFixValue for ClearingInstruction
Source§impl PartialEq for ClearingInstruction
impl PartialEq for ClearingInstruction
impl Copy for ClearingInstruction
impl Eq for ClearingInstruction
impl StructuralPartialEq for ClearingInstruction
Auto Trait Implementations§
impl Freeze for ClearingInstruction
impl RefUnwindSafe for ClearingInstruction
impl Send for ClearingInstruction
impl Sync for ClearingInstruction
impl Unpin for ClearingInstruction
impl UnwindSafe for ClearingInstruction
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