pub struct LegacyEvmFunctionResult {
pub txs: Vec<EvmTransaction>,
pub signatures: Vec<Vec<u8>>,
pub call_ids: Vec<Vec<u8>>,
pub checksums: Vec<Vec<u8>>,
}
Fields§
§txs: Vec<EvmTransaction>
§signatures: Vec<Vec<u8>>
§call_ids: Vec<Vec<u8>>
§checksums: Vec<Vec<u8>>
Trait Implementations§
source§impl Clone for LegacyEvmFunctionResult
impl Clone for LegacyEvmFunctionResult
source§fn clone(&self) -> LegacyEvmFunctionResult
fn clone(&self) -> LegacyEvmFunctionResult
Returns a copy 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 Debug for LegacyEvmFunctionResult
impl Debug for LegacyEvmFunctionResult
source§impl Default for LegacyEvmFunctionResult
impl Default for LegacyEvmFunctionResult
source§fn default() -> LegacyEvmFunctionResult
fn default() -> LegacyEvmFunctionResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LegacyEvmFunctionResult
impl<'de> Deserialize<'de> for LegacyEvmFunctionResult
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<LegacyEvmFunctionResult> for EvmFunctionResult
impl From<LegacyEvmFunctionResult> for EvmFunctionResult
source§fn from(item: LegacyEvmFunctionResult) -> EvmFunctionResult
fn from(item: LegacyEvmFunctionResult) -> EvmFunctionResult
Converts to this type from the input type.
source§impl PartialEq for LegacyEvmFunctionResult
impl PartialEq for LegacyEvmFunctionResult
source§fn eq(&self, other: &LegacyEvmFunctionResult) -> bool
fn eq(&self, other: &LegacyEvmFunctionResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LegacyEvmFunctionResult
impl Serialize for LegacyEvmFunctionResult
impl StructuralPartialEq for LegacyEvmFunctionResult
Auto Trait Implementations§
impl RefUnwindSafe for LegacyEvmFunctionResult
impl Send for LegacyEvmFunctionResult
impl Sync for LegacyEvmFunctionResult
impl Unpin for LegacyEvmFunctionResult
impl UnwindSafe for LegacyEvmFunctionResult
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