pub struct RateLimitOrderParams {
pub recv_window: Option<Decimal>,
}Expand description
Request parameters for the [rate_limit_order] operation.
This struct holds all of the inputs you can pass when calling
rate_limit_order.
Fields§
§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 RateLimitOrderParams
impl RateLimitOrderParams
Sourcepub fn builder() -> RateLimitOrderParamsBuilder
pub fn builder() -> RateLimitOrderParamsBuilder
Create a builder for [rate_limit_order].
Trait Implementations§
Source§impl Clone for RateLimitOrderParams
impl Clone for RateLimitOrderParams
Source§fn clone(&self) -> RateLimitOrderParams
fn clone(&self) -> RateLimitOrderParams
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 RateLimitOrderParams
impl Debug for RateLimitOrderParams
Source§impl Default for RateLimitOrderParams
impl Default for RateLimitOrderParams
Source§fn default() -> RateLimitOrderParams
fn default() -> RateLimitOrderParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RateLimitOrderParams
impl RefUnwindSafe for RateLimitOrderParams
impl Send for RateLimitOrderParams
impl Sync for RateLimitOrderParams
impl Unpin for RateLimitOrderParams
impl UnsafeUnpin for RateLimitOrderParams
impl UnwindSafe for RateLimitOrderParams
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