pub struct FetchDepositAddressListWithNetworkParams {
pub coin: String,
pub network: Option<String>,
}Expand description
Request parameters for the [fetch_deposit_address_list_with_network] operation.
This struct holds all of the inputs you can pass when calling
fetch_deposit_address_list_with_network.
Fields§
§coin: StringThe coin parameter.
This field is **required.
network: Option<String>The network parameter.
This field is **optional.
Implementations§
Source§impl FetchDepositAddressListWithNetworkParams
impl FetchDepositAddressListWithNetworkParams
Sourcepub fn builder(coin: String) -> FetchDepositAddressListWithNetworkParamsBuilder
pub fn builder(coin: String) -> FetchDepositAddressListWithNetworkParamsBuilder
Create a builder for [fetch_deposit_address_list_with_network].
Required parameters:
coin— String
Trait Implementations§
Source§impl Clone for FetchDepositAddressListWithNetworkParams
impl Clone for FetchDepositAddressListWithNetworkParams
Source§fn clone(&self) -> FetchDepositAddressListWithNetworkParams
fn clone(&self) -> FetchDepositAddressListWithNetworkParams
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 FetchDepositAddressListWithNetworkParams
impl RefUnwindSafe for FetchDepositAddressListWithNetworkParams
impl Send for FetchDepositAddressListWithNetworkParams
impl Sync for FetchDepositAddressListWithNetworkParams
impl Unpin for FetchDepositAddressListWithNetworkParams
impl UnsafeUnpin for FetchDepositAddressListWithNetworkParams
impl UnwindSafe for FetchDepositAddressListWithNetworkParams
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