pub struct RequestForDetailMinerListParams {
pub algo: String,
pub user_name: String,
pub worker_name: String,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [request_for_detail_miner_list] operation.
This struct holds all of the inputs you can pass when calling
request_for_detail_miner_list.
Fields§
§algo: StringAlgorithm(sha256) sha256
This field is **required.
user_name: StringMining account test
This field is **required.
worker_name: StringMiner’s name(required) bhdc1.16A10404B
This field is **required.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl RequestForDetailMinerListParams
impl RequestForDetailMinerListParams
Sourcepub fn builder(
algo: String,
user_name: String,
worker_name: String,
) -> RequestForDetailMinerListParamsBuilder
pub fn builder( algo: String, user_name: String, worker_name: String, ) -> RequestForDetailMinerListParamsBuilder
Create a builder for [request_for_detail_miner_list].
Required parameters:
algo— Algorithm(sha256) sha256user_name— Mining account testworker_name— Miner’s name(required) bhdc1.16A10404B
Trait Implementations§
Source§impl Clone for RequestForDetailMinerListParams
impl Clone for RequestForDetailMinerListParams
Source§fn clone(&self) -> RequestForDetailMinerListParams
fn clone(&self) -> RequestForDetailMinerListParams
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 RequestForDetailMinerListParams
impl RefUnwindSafe for RequestForDetailMinerListParams
impl Send for RequestForDetailMinerListParams
impl Sync for RequestForDetailMinerListParams
impl Unpin for RequestForDetailMinerListParams
impl UnsafeUnpin for RequestForDetailMinerListParams
impl UnwindSafe for RequestForDetailMinerListParams
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