pub enum ComplexEventCondition {
    And,
    Or,
}Variants§
Implementations§
source§impl ComplexEventCondition
 
impl ComplexEventCondition
pub fn from_bytes(input: &[u8]) -> Option<ComplexEventCondition>
pub fn from_fix_str(input: &FixStr) -> Option<ComplexEventCondition>
pub fn as_bytes(&self) -> &'static [u8] ⓘ
pub fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for ComplexEventCondition
 
impl Clone for ComplexEventCondition
source§fn clone(&self) -> ComplexEventCondition
 
fn clone(&self) -> ComplexEventCondition
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 ComplexEventCondition
 
impl Debug for ComplexEventCondition
source§impl From<ComplexEventCondition> for &'static [u8]
 
impl From<ComplexEventCondition> for &'static [u8]
source§impl PartialEq<ComplexEventCondition> for ComplexEventCondition
 
impl PartialEq<ComplexEventCondition> for ComplexEventCondition
source§fn eq(&self, other: &ComplexEventCondition) -> bool
 
fn eq(&self, other: &ComplexEventCondition) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl ToFixString for ComplexEventCondition
 
impl ToFixString for ComplexEventCondition
fn to_fix_string(&self) -> FixString
source§impl TryFrom<i64> for ComplexEventCondition
 
impl TryFrom<i64> for ComplexEventCondition
§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(input: Int) -> Result<ComplexEventCondition, SessionRejectReason>
 
fn try_from(input: Int) -> Result<ComplexEventCondition, SessionRejectReason>
Performs the conversion.
impl Copy for ComplexEventCondition
impl Eq for ComplexEventCondition
impl StructuralEq for ComplexEventCondition
impl StructuralPartialEq for ComplexEventCondition
Auto Trait Implementations§
impl RefUnwindSafe for ComplexEventCondition
impl Send for ComplexEventCondition
impl Sync for ComplexEventCondition
impl Unpin for ComplexEventCondition
impl UnwindSafe for ComplexEventCondition
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