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<Int>,
pub encrypted_password: Option<Data>,
pub encrypted_new_password: Option<Data>,
pub raw_data: Option<Data>,
}
Fields§
§user_request_id: FixString
Tag 923.
user_request_type: UserRequestType
Tag 924.
username: FixString
Tag 553.
password: Option<FixString>
Tag 554.
new_password: Option<FixString>
Tag 925.
encrypted_password_method: Option<Int>
Tag 1400.
encrypted_password: Option<Data>
Tag 1402.
encrypted_new_password: Option<Data>
Tag 1404.
raw_data: Option<Data>
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 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 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