pub enum UnsignedEthereumTransaction {
StandardEthereumTransaction(UnsignedStandardEthereumTransaction),
TempoTransaction(UnsignedTempoTransaction),
}Expand description
An unsigned Ethereum transaction object. Supports standard EVM transaction types (0, 1, 2, 4) and Tempo transactions (type 118).
JSON schema
{
"title": "UnsignedEthereumTransaction",
"description": "An unsigned Ethereum transaction object. Supports
standard EVM transaction types (0, 1, 2, 4) and Tempo transactions (type
118).",
"oneOf": [
{
"$ref": "#/components/schemas/UnsignedStandardEthereumTransaction"
},
{
"$ref": "#/components/schemas/UnsignedTempoTransaction"
}
],
"x-stainless-model": "wallets.unsigned_ethereum_transaction"
}Variants§
StandardEthereumTransaction(UnsignedStandardEthereumTransaction)
TempoTransaction(UnsignedTempoTransaction)
Trait Implementations§
Source§impl Clone for UnsignedEthereumTransaction
impl Clone for UnsignedEthereumTransaction
Source§fn clone(&self) -> UnsignedEthereumTransaction
fn clone(&self) -> UnsignedEthereumTransaction
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 UnsignedEthereumTransaction
impl Debug for UnsignedEthereumTransaction
Source§impl<'de> Deserialize<'de> for UnsignedEthereumTransaction
impl<'de> Deserialize<'de> for UnsignedEthereumTransaction
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<&UnsignedEthereumTransaction> for UnsignedEthereumTransaction
impl From<&UnsignedEthereumTransaction> for UnsignedEthereumTransaction
Source§fn from(value: &UnsignedEthereumTransaction) -> Self
fn from(value: &UnsignedEthereumTransaction) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedStandardEthereumTransaction> for UnsignedEthereumTransaction
impl From<UnsignedStandardEthereumTransaction> for UnsignedEthereumTransaction
Source§fn from(value: UnsignedStandardEthereumTransaction) -> Self
fn from(value: UnsignedStandardEthereumTransaction) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedTempoTransaction> for UnsignedEthereumTransaction
impl From<UnsignedTempoTransaction> for UnsignedEthereumTransaction
Source§fn from(value: UnsignedTempoTransaction) -> Self
fn from(value: UnsignedTempoTransaction) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UnsignedEthereumTransaction
impl RefUnwindSafe for UnsignedEthereumTransaction
impl Send for UnsignedEthereumTransaction
impl Sync for UnsignedEthereumTransaction
impl Unpin for UnsignedEthereumTransaction
impl UnsafeUnpin for UnsignedEthereumTransaction
impl UnwindSafe for UnsignedEthereumTransaction
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