pub enum UserRequestType {
LogOnUser,
LogOffUser,
ChangePasswordForUser,
RequestIndividualUserStatus,
}
Variants§
LogOnUser
Value “1”
LogOffUser
Value “2”
ChangePasswordForUser
Value “3”
RequestIndividualUserStatus
Value “4”
Implementations§
Source§impl UserRequestType
impl UserRequestType
pub const fn from_bytes(input: &[u8]) -> Option<UserRequestType>
pub const fn from_fix_str(input: &FixStr) -> Option<UserRequestType>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for UserRequestType
impl Clone for UserRequestType
Source§fn clone(&self) -> UserRequestType
fn clone(&self) -> UserRequestType
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 UserRequestType
impl Debug for UserRequestType
Source§impl Default for UserRequestType
impl Default for UserRequestType
Source§fn default() -> UserRequestType
fn default() -> UserRequestType
Returns the “default value” for a type. Read more
Source§impl From<UserRequestType> for &'static [u8]
impl From<UserRequestType> for &'static [u8]
Source§impl PartialEq for UserRequestType
impl PartialEq for UserRequestType
Source§impl ToFixString for UserRequestType
impl ToFixString for UserRequestType
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for UserRequestType
impl TryFrom<i64> for UserRequestType
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<UserRequestType, ParseRejectReason>
fn try_from(input: Int) -> Result<UserRequestType, ParseRejectReason>
Performs the conversion.
impl Copy for UserRequestType
impl Eq for UserRequestType
impl StructuralPartialEq for UserRequestType
Auto Trait Implementations§
impl Freeze for UserRequestType
impl RefUnwindSafe for UserRequestType
impl Send for UserRequestType
impl Sync for UserRequestType
impl Unpin for UserRequestType
impl UnwindSafe for UserRequestType
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