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