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