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
source§fn eq(&self, other: &ClearingInstruction) -> bool
fn eq(&self, other: &ClearingInstruction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ClearingInstruction
impl Eq for ClearingInstruction
impl StructuralPartialEq for ClearingInstruction
Auto Trait Implementations§
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