pub struct TransactionResponseContractCallDecodedData {
pub contract_name: Option<String>,
pub function_calls: Option<Vec<Value>>,
}
Expand description
TransactionResponseContractCallDecodedData : Decoded data for
CONTRACT_CALL
operations.
Fields§
§contract_name: Option<String>
§function_calls: Option<Vec<Value>>
Implementations§
Source§impl TransactionResponseContractCallDecodedData
impl TransactionResponseContractCallDecodedData
Sourcepub fn new() -> TransactionResponseContractCallDecodedData
pub fn new() -> TransactionResponseContractCallDecodedData
Decoded data for CONTRACT_CALL
operations.
Trait Implementations§
Source§impl Clone for TransactionResponseContractCallDecodedData
impl Clone for TransactionResponseContractCallDecodedData
Source§fn clone(&self) -> TransactionResponseContractCallDecodedData
fn clone(&self) -> TransactionResponseContractCallDecodedData
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 Default for TransactionResponseContractCallDecodedData
impl Default for TransactionResponseContractCallDecodedData
Source§fn default() -> TransactionResponseContractCallDecodedData
fn default() -> TransactionResponseContractCallDecodedData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionResponseContractCallDecodedData
impl<'de> Deserialize<'de> for TransactionResponseContractCallDecodedData
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 PartialEq for TransactionResponseContractCallDecodedData
impl PartialEq for TransactionResponseContractCallDecodedData
Source§fn eq(&self, other: &TransactionResponseContractCallDecodedData) -> bool
fn eq(&self, other: &TransactionResponseContractCallDecodedData) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TransactionResponseContractCallDecodedData
Auto Trait Implementations§
impl Freeze for TransactionResponseContractCallDecodedData
impl RefUnwindSafe for TransactionResponseContractCallDecodedData
impl Send for TransactionResponseContractCallDecodedData
impl Sync for TransactionResponseContractCallDecodedData
impl Unpin for TransactionResponseContractCallDecodedData
impl UnwindSafe for TransactionResponseContractCallDecodedData
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