pub struct ExtraBonusListParams {
pub algo: String,
pub user_name: String,
pub coin: Option<String>,
pub start_date: Option<i64>,
pub end_date: Option<i64>,
pub page_index: Option<i64>,
pub page_size: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [extra_bonus_list] operation.
This struct holds all of the inputs you can pass when calling
extra_bonus_list.
Fields§
§algo: StringTransfer algorithm
This field is **required.
user_name: StringMining account
This field is **required.
coin: Option<String>Coin name
This field is **optional.
start_date: Option<i64>Search start time in milliseconds.
This field is **optional.
end_date: Option<i64>Search end time in milliseconds.
This field is **optional.
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 ExtraBonusListParams
impl ExtraBonusListParams
Sourcepub fn builder(algo: String, user_name: String) -> ExtraBonusListParamsBuilder
pub fn builder(algo: String, user_name: String) -> ExtraBonusListParamsBuilder
Create a builder for [extra_bonus_list].
Required parameters:
algo— Transfer algorithmuser_name— Mining account
Trait Implementations§
Source§impl Clone for ExtraBonusListParams
impl Clone for ExtraBonusListParams
Source§fn clone(&self) -> ExtraBonusListParams
fn clone(&self) -> ExtraBonusListParams
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 ExtraBonusListParams
impl Debug for ExtraBonusListParams
Source§impl<'de> Deserialize<'de> for ExtraBonusListParams
impl<'de> Deserialize<'de> for ExtraBonusListParams
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 ExtraBonusListParams
impl RefUnwindSafe for ExtraBonusListParams
impl Send for ExtraBonusListParams
impl Sync for ExtraBonusListParams
impl Unpin for ExtraBonusListParams
impl UnsafeUnpin for ExtraBonusListParams
impl UnwindSafe for ExtraBonusListParams
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