pub enum UserRequestType {
LogOnUser = 1,
LogOffUser = 2,
ChangePasswordForUser = 3,
RequestIndividualUserStatus = 4,
}
Variants§
Implementations§
Source§impl UserRequestType
impl UserRequestType
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
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 FromStr for UserRequestType
impl FromStr for UserRequestType
Source§impl Hash for UserRequestType
impl Hash for UserRequestType
Source§impl IntoFixValue for UserRequestType
impl IntoFixValue for UserRequestType
Source§impl PartialEq for UserRequestType
impl PartialEq for UserRequestType
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