pub struct TransactionScanningParams {
pub block_tag: Option<String>,
pub calldata: Option<TransactionScanningCalldata>,
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
The parameters of the scanned transaction.
JSON schema
{
"title": "TransactionScanningParams",
"description": "The parameters of the scanned transaction.",
"type": "object",
"properties": {
"block_tag": {
"type": "string"
},
"calldata": {
"$ref": "#/components/schemas/TransactionScanningCalldata"
},
"chain": {
"type": "string"
},
"data": {
"type": "string"
},
"from": {
"type": "string"
},
"gas": {
"type": "string"
},
"gas_price": {
"type": "string"
},
"to": {
"type": "string"
},
"value": {
"type": "string"
}
},
"x-stainless-model": "transactions.transaction_scanning_params"
}Fields§
§block_tag: Option<String>§calldata: Option<TransactionScanningCalldata>§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 TransactionScanningParams
impl Clone for TransactionScanningParams
Source§fn clone(&self) -> TransactionScanningParams
fn clone(&self) -> TransactionScanningParams
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 TransactionScanningParams
impl Debug for TransactionScanningParams
Source§impl Default for TransactionScanningParams
impl Default for TransactionScanningParams
Source§impl<'de> Deserialize<'de> for TransactionScanningParams
impl<'de> Deserialize<'de> for TransactionScanningParams
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<&TransactionScanningParams> for TransactionScanningParams
impl From<&TransactionScanningParams> for TransactionScanningParams
Source§fn from(value: &TransactionScanningParams) -> Self
fn from(value: &TransactionScanningParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionScanningParams
impl RefUnwindSafe for TransactionScanningParams
impl Send for TransactionScanningParams
impl Sync for TransactionScanningParams
impl Unpin for TransactionScanningParams
impl UnsafeUnpin for TransactionScanningParams
impl UnwindSafe for TransactionScanningParams
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