pub struct DustlogParams {
pub account_type: Option<String>,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [dustlog] operation.
This struct holds all of the inputs you can pass when calling
dustlog.
Fields§
§account_type: Option<String>SPOT or MARGIN,default SPOT
This field is **optional.
start_time: Option<i64>The start_time parameter.
This field is **optional.
end_time: Option<i64>The end_time parameter.
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl DustlogParams
impl DustlogParams
Sourcepub fn builder() -> DustlogParamsBuilder
pub fn builder() -> DustlogParamsBuilder
Create a builder for [dustlog].
Trait Implementations§
Source§impl Clone for DustlogParams
impl Clone for DustlogParams
Source§fn clone(&self) -> DustlogParams
fn clone(&self) -> DustlogParams
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 DustlogParams
impl Debug for DustlogParams
Source§impl Default for DustlogParams
impl Default for DustlogParams
Source§fn default() -> DustlogParams
fn default() -> DustlogParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DustlogParams
impl RefUnwindSafe for DustlogParams
impl Send for DustlogParams
impl Sync for DustlogParams
impl Unpin for DustlogParams
impl UnsafeUnpin for DustlogParams
impl UnwindSafe for DustlogParams
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