pub struct TransactionScanningResponseBodySimulationExposuresItemSpendersValue {
pub usd_price: Option<String>,
pub value: Option<String>,
}Expand description
TransactionScanningResponseBodySimulationExposuresItemSpendersValue
JSON schema
{
"type": "object",
"properties": {
"usd_price": {
"type": "string"
},
"value": {
"type": "string"
}
}
}Fields§
§usd_price: Option<String>§value: Option<String>Trait Implementations§
Source§impl Clone for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
impl Clone for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
Source§fn clone(
&self,
) -> TransactionScanningResponseBodySimulationExposuresItemSpendersValue
fn clone( &self, ) -> TransactionScanningResponseBodySimulationExposuresItemSpendersValue
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 TransactionScanningResponseBodySimulationExposuresItemSpendersValue
impl<'de> Deserialize<'de> for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
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<&TransactionScanningResponseBodySimulationExposuresItemSpendersValue> for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
impl From<&TransactionScanningResponseBodySimulationExposuresItemSpendersValue> for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
Source§fn from(
value: &TransactionScanningResponseBodySimulationExposuresItemSpendersValue,
) -> Self
fn from( value: &TransactionScanningResponseBodySimulationExposuresItemSpendersValue, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
impl RefUnwindSafe for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
impl Send for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
impl Sync for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
impl Unpin for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
impl UnsafeUnpin for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
impl UnwindSafe for TransactionScanningResponseBodySimulationExposuresItemSpendersValue
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