pub struct HashrateResaleListParams {
pub page_index: Option<i64>,
pub page_size: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [hashrate_resale_list] operation.
This struct holds all of the inputs you can pass when calling
hashrate_resale_list.
Fields§
§page_index: Option<i64>Page number, empty default first page, starting from 1
This field is **optional.
page_size: Option<i64>Min 10,Max 200
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl HashrateResaleListParams
impl HashrateResaleListParams
Sourcepub fn builder() -> HashrateResaleListParamsBuilder
pub fn builder() -> HashrateResaleListParamsBuilder
Create a builder for [hashrate_resale_list].
Trait Implementations§
Source§impl Clone for HashrateResaleListParams
impl Clone for HashrateResaleListParams
Source§fn clone(&self) -> HashrateResaleListParams
fn clone(&self) -> HashrateResaleListParams
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 HashrateResaleListParams
impl Debug for HashrateResaleListParams
Source§impl Default for HashrateResaleListParams
impl Default for HashrateResaleListParams
Source§fn default() -> HashrateResaleListParams
fn default() -> HashrateResaleListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HashrateResaleListParams
impl RefUnwindSafe for HashrateResaleListParams
impl Send for HashrateResaleListParams
impl Sync for HashrateResaleListParams
impl Unpin for HashrateResaleListParams
impl UnsafeUnpin for HashrateResaleListParams
impl UnwindSafe for HashrateResaleListParams
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