pub struct Cip1559Transaction {
pub nonce: U256,
pub max_priority_fee_per_gas: U256,
pub max_fee_per_gas: U256,
pub gas: U256,
pub action: Action,
pub value: U256,
pub storage_limit: u64,
pub epoch_height: u64,
pub chain_id: u32,
pub data: Bytes,
pub access_list: Vec<AccessListItem>,
}
Fields§
§nonce: U256
§max_priority_fee_per_gas: U256
§max_fee_per_gas: U256
§gas: U256
§action: Action
§value: U256
§storage_limit: u64
§epoch_height: u64
§chain_id: u32
§data: Bytes
§access_list: Vec<AccessListItem>
Trait Implementations§
source§impl Clone for Cip1559Transaction
impl Clone for Cip1559Transaction
source§fn clone(&self) -> Cip1559Transaction
fn clone(&self) -> Cip1559Transaction
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 Cip1559Transaction
impl Debug for Cip1559Transaction
source§impl Decodable for Cip1559Transaction
impl Decodable for Cip1559Transaction
source§impl Default for Cip1559Transaction
impl Default for Cip1559Transaction
source§fn default() -> Cip1559Transaction
fn default() -> Cip1559Transaction
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for Cip1559Transaction
impl<'de> Deserialize<'de> for Cip1559Transaction
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 Encodable for Cip1559Transaction
impl Encodable for Cip1559Transaction
source§impl PartialEq for Cip1559Transaction
impl PartialEq for Cip1559Transaction
source§fn eq(&self, other: &Cip1559Transaction) -> bool
fn eq(&self, other: &Cip1559Transaction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for Cip1559Transaction
impl Serialize for Cip1559Transaction
impl Eq for Cip1559Transaction
impl StructuralPartialEq for Cip1559Transaction
Auto Trait Implementations§
impl RefUnwindSafe for Cip1559Transaction
impl Send for Cip1559Transaction
impl Sync for Cip1559Transaction
impl Unpin for Cip1559Transaction
impl UnwindSafe for Cip1559Transaction
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