Enum easyfix_messages::fields::UserStatus  
source · pub enum UserStatus {
    LoggedIn,
    NotLoggedIn,
    UserNotRecognised,
    PasswordIncorrect,
    PasswordChanged,
    Other,
    ForcedUserLogoutByExchange,
    SessionShutdownWarning,
}Variants§
LoggedIn
NotLoggedIn
UserNotRecognised
PasswordIncorrect
PasswordChanged
Other
ForcedUserLogoutByExchange
SessionShutdownWarning
Implementations§
source§impl UserStatus
 
impl UserStatus
pub fn from_bytes(input: &[u8]) -> Option<UserStatus>
pub fn from_fix_str(input: &FixStr) -> Option<UserStatus>
pub fn as_bytes(&self) -> &'static [u8] ⓘ
pub fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
source§impl Clone for UserStatus
 
impl Clone for UserStatus
source§fn clone(&self) -> UserStatus
 
fn clone(&self) -> UserStatus
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 UserStatus
 
impl Debug for UserStatus
source§impl From<UserStatus> for &'static [u8]
 
impl From<UserStatus> for &'static [u8]
source§impl PartialEq<UserStatus> for UserStatus
 
impl PartialEq<UserStatus> for UserStatus
source§fn eq(&self, other: &UserStatus) -> bool
 
fn eq(&self, other: &UserStatus) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl ToFixString for UserStatus
 
impl ToFixString for UserStatus
fn to_fix_string(&self) -> FixString
source§impl TryFrom<i64> for UserStatus
 
impl TryFrom<i64> for UserStatus
§type Error = SessionRejectReason
 
type Error = SessionRejectReason
The type returned in the event of a conversion error.
source§fn try_from(input: Int) -> Result<UserStatus, SessionRejectReason>
 
fn try_from(input: Int) -> Result<UserStatus, SessionRejectReason>
Performs the conversion.