pub struct SessionLogonParams {
pub id: Option<String>,
pub recv_window: Option<Decimal>,
}Expand description
Request parameters for the [session_logon] operation.
This struct holds all of the inputs you can pass when calling
session_logon.
Fields§
§id: Option<String>Unique WebSocket request ID.
This field is **optional.
recv_window: Option<Decimal>The value cannot be greater than 60000.
Supports up to three decimal places of precision (e.g., 6000.346) so that microseconds may be specified.
This field is **optional.
Implementations§
Source§impl SessionLogonParams
impl SessionLogonParams
Sourcepub fn builder() -> SessionLogonParamsBuilder
pub fn builder() -> SessionLogonParamsBuilder
Create a builder for [session_logon].
Trait Implementations§
Source§impl Clone for SessionLogonParams
impl Clone for SessionLogonParams
Source§fn clone(&self) -> SessionLogonParams
fn clone(&self) -> SessionLogonParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SessionLogonParams
impl Debug for SessionLogonParams
Source§impl Default for SessionLogonParams
impl Default for SessionLogonParams
Source§fn default() -> SessionLogonParams
fn default() -> SessionLogonParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SessionLogonParams
impl RefUnwindSafe for SessionLogonParams
impl Send for SessionLogonParams
impl Sync for SessionLogonParams
impl Unpin for SessionLogonParams
impl UnsafeUnpin for SessionLogonParams
impl UnwindSafe for SessionLogonParams
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