revm_
context_
interface
1.0.0
CfgGetter
Required Associated Types
Cfg
Required Methods
cfg
Implementations on Foreign Types
&'a T
&'a mut T
Arc<T>
Box<T>
Implementors
In revm_
context_
interface::
cfg
revm_context_interface
::
cfg
Trait
CfgGetter
Copy item path
Source
pub trait CfgGetter { type
Cfg
:
Cfg
; // Required method fn
cfg
(&self) -> &Self::
Cfg
; }
Required Associated Types
§
Source
type
Cfg
:
Cfg
Required Methods
§
Source
fn
cfg
(&self) -> &Self::
Cfg
Implementations on Foreign Types
§
Source
§
impl<'a, T: 'a +
CfgGetter
+ ?
Sized
>
CfgGetter
for
&'a T
Source
§
type
Cfg
= <T as
CfgGetter
>::
Cfg
Source
§
fn
cfg
(&self) -> &Self::
Cfg
Source
§
impl<'a, T: 'a +
CfgGetter
+ ?
Sized
>
CfgGetter
for
&'a mut T
Source
§
type
Cfg
= <T as
CfgGetter
>::
Cfg
Source
§
fn
cfg
(&self) -> &Self::
Cfg
Source
§
impl<T:
CfgGetter
+ ?
Sized
>
CfgGetter
for
Box
<T>
Source
§
type
Cfg
= <T as
CfgGetter
>::
Cfg
Source
§
fn
cfg
(&self) -> &Self::
Cfg
Source
§
impl<T:
CfgGetter
+ ?
Sized
>
CfgGetter
for
Arc
<T>
Source
§
type
Cfg
= <T as
CfgGetter
>::
Cfg
Source
§
fn
cfg
(&self) -> &Self::
Cfg
Implementors
§