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