pub struct UserRequest {
    pub user_request_id: FixString,
    pub user_request_type: UserRequestType,
    pub username: FixString,
    pub password: Option<FixString>,
    pub new_password: Option<FixString>,
    pub encrypted_password_method: Option<i64>,
    pub encrypted_password: Option<Vec<u8>>,
    pub encrypted_new_password: Option<Vec<u8>>,
    pub raw_data: Option<Vec<u8>>,
}Fields§
§user_request_id: FixStringTag 923.
user_request_type: UserRequestTypeTag 924.
username: FixStringTag 553.
password: Option<FixString>Tag 554.
new_password: Option<FixString>Tag 925.
encrypted_password_method: Option<i64>Tag 1400.
encrypted_password: Option<Vec<u8>>Tag 1402.
encrypted_new_password: Option<Vec<u8>>Tag 1404.
raw_data: Option<Vec<u8>>Tag 96.
Implementations§
Trait Implementations§
Source§impl Clone for UserRequest
 
impl Clone for UserRequest
Source§fn clone(&self) -> UserRequest
 
fn clone(&self) -> UserRequest
Returns a duplicate 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 UserRequest
 
impl Debug for UserRequest
Source§impl Default for UserRequest
 
impl Default for UserRequest
Source§fn default() -> UserRequest
 
fn default() -> UserRequest
Returns the “default value” for a type. Read more
Source§impl From<UserRequest> for Message
 
impl From<UserRequest> for Message
Source§fn from(msg: UserRequest) -> Message
 
fn from(msg: UserRequest) -> Message
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UserRequest
impl RefUnwindSafe for UserRequest
impl Send for UserRequest
impl Sync for UserRequest
impl Unpin for UserRequest
impl UnwindSafe for UserRequest
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