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