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