revm_
context_
interface
1.0.0
Eip1559
Tx
Required Methods
kind
Implementations on Foreign Types
&'a T
Arc<T>
Box<T>
Rc<T>
Implementors
In revm_
context_
interface::
transaction::
eip1559
revm_context_interface
::
transaction
::
eip1559
Trait
Eip1559Tx
Copy item path
Source
pub trait Eip1559Tx:
Eip1559CommonTxFields
{ // Required method fn
kind
(&self) -> TxKind; }
Required Methods
§
Source
fn
kind
(&self) -> TxKind
Implementations on Foreign Types
§
Source
§
impl<'a, T: 'a +
Eip1559Tx
+ ?
Sized
>
Eip1559Tx
for
&'a T
where
&'a T
:
Eip1559CommonTxFields
,
Source
§
fn
kind
(&self) -> TxKind
Source
§
impl<T:
Eip1559Tx
+ ?
Sized
>
Eip1559Tx
for
Box
<T>
where
Box
<T>:
Eip1559CommonTxFields
,
Source
§
fn
kind
(&self) -> TxKind
Source
§
impl<T:
Eip1559Tx
+ ?
Sized
>
Eip1559Tx
for
Rc
<T>
where
Rc
<T>:
Eip1559CommonTxFields
,
Source
§
fn
kind
(&self) -> TxKind
Source
§
impl<T:
Eip1559Tx
+ ?
Sized
>
Eip1559Tx
for
Arc
<T>
where
Arc
<T>:
Eip1559CommonTxFields
,
Source
§
fn
kind
(&self) -> TxKind
Implementors
§