pub struct QueryManagedSubAccountSnapshotParams {
pub email: String,
pub type: String,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub limit: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_managed_sub_account_snapshot] operation.
This struct holds all of the inputs you can pass when calling
query_managed_sub_account_snapshot.
Fields§
§email: StringThis field is **required.
type: String“SPOT”, “MARGIN”(cross), “FUTURES”(UM)
This field is **required.
start_time: Option<i64>The start_time parameter.
This field is **optional.
end_time: Option<i64>The end_time parameter.
This field is **optional.
limit: Option<i64>Default value: 1, Max value: 200
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl QueryManagedSubAccountSnapshotParams
impl QueryManagedSubAccountSnapshotParams
Sourcepub fn builder(
email: String,
type: String,
) -> QueryManagedSubAccountSnapshotParamsBuilder
pub fn builder( email: String, type: String, ) -> QueryManagedSubAccountSnapshotParamsBuilder
Create a builder for [query_managed_sub_account_snapshot].
Required parameters:
email— Sub-account emailr#type— "SPOT", "MARGIN"(cross), "FUTURES"(UM)
Trait Implementations§
Source§impl Clone for QueryManagedSubAccountSnapshotParams
impl Clone for QueryManagedSubAccountSnapshotParams
Source§fn clone(&self) -> QueryManagedSubAccountSnapshotParams
fn clone(&self) -> QueryManagedSubAccountSnapshotParams
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 moreAuto Trait Implementations§
impl Freeze for QueryManagedSubAccountSnapshotParams
impl RefUnwindSafe for QueryManagedSubAccountSnapshotParams
impl Send for QueryManagedSubAccountSnapshotParams
impl Sync for QueryManagedSubAccountSnapshotParams
impl Unpin for QueryManagedSubAccountSnapshotParams
impl UnsafeUnpin for QueryManagedSubAccountSnapshotParams
impl UnwindSafe for QueryManagedSubAccountSnapshotParams
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