pub struct Environment {
pub ap_tracking: ApChange,
pub frame_state: FrameState,
pub gas_wallet: GasWallet,
}
Expand description
Part of the program annotations that libfuncs may access as part of their run.
Fields§
§ap_tracking: ApChange
The ap tracking from the beginning of the current function. Once it changes to ApChange::Unknown it remains in that state.
frame_state: FrameState
§gas_wallet: GasWallet
Implementations§
Trait Implementations§
source§impl Clone for Environment
impl Clone for Environment
source§fn clone(&self) -> Environment
fn clone(&self) -> Environment
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 Environment
impl Debug for Environment
source§impl PartialEq<Environment> for Environment
impl PartialEq<Environment> for Environment
source§fn eq(&self, other: &Environment) -> bool
fn eq(&self, other: &Environment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for Environment
impl StructuralEq for Environment
impl StructuralPartialEq for Environment
Auto Trait Implementations§
impl RefUnwindSafe for Environment
impl Send for Environment
impl Sync for Environment
impl Unpin for Environment
impl UnwindSafe for Environment
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.