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, starting from 1.
This field is **optional.
page_size: Option<i64>Number of rows per page.
This field is **optional.
recv_window: Option<i64>Request validity window in milliseconds.
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
Source§impl<'de> Deserialize<'de> for HashrateResaleListParams
impl<'de> Deserialize<'de> for HashrateResaleListParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. 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