pub struct BswapPoolConfigureResponseItemAssetConfigureBusd {
pub max_add: i64,
pub max_swap: i64,
pub min_add: i64,
pub min_swap: i64,
}
Expand description
BswapPoolConfigureResponseItemAssetConfigureBusd
JSON schema
{
"type": "object",
"required": [
"maxAdd",
"maxSwap",
"minAdd",
"minSwap"
],
"properties": {
"maxAdd": {
"examples": [
20
],
"type": "integer",
"format": "int64"
},
"maxSwap": {
"examples": [
30
],
"type": "integer",
"format": "int64"
},
"minAdd": {
"examples": [
10
],
"type": "integer",
"format": "int64"
},
"minSwap": {
"examples": [
10
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§max_add: i64
§max_swap: i64
§min_add: i64
§min_swap: i64
Trait Implementations§
Source§impl Clone for BswapPoolConfigureResponseItemAssetConfigureBusd
impl Clone for BswapPoolConfigureResponseItemAssetConfigureBusd
Source§fn clone(&self) -> BswapPoolConfigureResponseItemAssetConfigureBusd
fn clone(&self) -> BswapPoolConfigureResponseItemAssetConfigureBusd
Returns a duplicate of the value. Read more
1.0.0 · 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 BswapPoolConfigureResponseItemAssetConfigureBusd
impl<'de> Deserialize<'de> for BswapPoolConfigureResponseItemAssetConfigureBusd
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
Source§impl From<&BswapPoolConfigureResponseItemAssetConfigureBusd> for BswapPoolConfigureResponseItemAssetConfigureBusd
impl From<&BswapPoolConfigureResponseItemAssetConfigureBusd> for BswapPoolConfigureResponseItemAssetConfigureBusd
Source§fn from(value: &BswapPoolConfigureResponseItemAssetConfigureBusd) -> Self
fn from(value: &BswapPoolConfigureResponseItemAssetConfigureBusd) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BswapPoolConfigureResponseItemAssetConfigureBusd
impl RefUnwindSafe for BswapPoolConfigureResponseItemAssetConfigureBusd
impl Send for BswapPoolConfigureResponseItemAssetConfigureBusd
impl Sync for BswapPoolConfigureResponseItemAssetConfigureBusd
impl Unpin for BswapPoolConfigureResponseItemAssetConfigureBusd
impl UnwindSafe for BswapPoolConfigureResponseItemAssetConfigureBusd
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