pub struct TransactionScanningResponseBodySimulationParams {
pub block_tag: Option<String>,
pub calldata: Option<TransactionScanningResponseBodySimulationParamsCalldata>,
pub chain: Option<String>,
pub data: Option<String>,
pub from: Option<String>,
pub gas: Option<String>,
pub gas_price: Option<String>,
pub to: Option<String>,
pub value: Option<String>,
}Expand description
TransactionScanningResponseBodySimulationParams
JSON schema
{
"type": "object",
"properties": {
"block_tag": {
"type": "string"
},
"calldata": {
"type": "object",
"required": [
"function_selector"
],
"properties": {
"function_declaration": {
"type": "string"
},
"function_selector": {
"type": "string"
},
"function_signature": {
"type": "string"
}
}
},
"chain": {
"type": "string"
},
"data": {
"type": "string"
},
"from": {
"type": "string"
},
"gas": {
"type": "string"
},
"gas_price": {
"type": "string"
},
"to": {
"type": "string"
},
"value": {
"type": "string"
}
}
}Fields§
§block_tag: Option<String>§calldata: Option<TransactionScanningResponseBodySimulationParamsCalldata>§chain: Option<String>§data: Option<String>§from: Option<String>§gas: Option<String>§gas_price: Option<String>§to: Option<String>§value: Option<String>Trait Implementations§
Source§impl Clone for TransactionScanningResponseBodySimulationParams
impl Clone for TransactionScanningResponseBodySimulationParams
Source§fn clone(&self) -> TransactionScanningResponseBodySimulationParams
fn clone(&self) -> TransactionScanningResponseBodySimulationParams
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 TransactionScanningResponseBodySimulationParams
impl<'de> Deserialize<'de> for TransactionScanningResponseBodySimulationParams
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<&TransactionScanningResponseBodySimulationParams> for TransactionScanningResponseBodySimulationParams
impl From<&TransactionScanningResponseBodySimulationParams> for TransactionScanningResponseBodySimulationParams
Source§fn from(value: &TransactionScanningResponseBodySimulationParams) -> Self
fn from(value: &TransactionScanningResponseBodySimulationParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionScanningResponseBodySimulationParams
impl RefUnwindSafe for TransactionScanningResponseBodySimulationParams
impl Send for TransactionScanningResponseBodySimulationParams
impl Sync for TransactionScanningResponseBodySimulationParams
impl Unpin for TransactionScanningResponseBodySimulationParams
impl UnsafeUnpin for TransactionScanningResponseBodySimulationParams
impl UnwindSafe for TransactionScanningResponseBodySimulationParams
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