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