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