Struct revm::CallContext 
source · [−]pub struct CallContext {
    pub address: H160,
    pub caller: H160,
    pub code_address: H160,
    pub apparent_value: U256,
    pub scheme: CallScheme,
}Expand description
CallContext of the runtime.
Fields
address: H160Execution address.
caller: H160Caller of the EVM.
code_address: H160The address the contract code was loaded from, if any.
apparent_value: U256Apparent value of the EVM.
scheme: CallSchemeThe scheme used for the call.
Trait Implementations
sourceimpl Clone for CallContext
 
impl Clone for CallContext
sourcefn clone(&self) -> CallContext
 
fn clone(&self) -> CallContext
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CallContext
 
impl Debug for CallContext
sourceimpl Default for CallContext
 
impl Default for CallContext
sourceimpl PartialEq<CallContext> for CallContext
 
impl PartialEq<CallContext> for CallContext
sourcefn eq(&self, other: &CallContext) -> bool
 
fn eq(&self, other: &CallContext) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CallContext) -> bool
 
fn ne(&self, other: &CallContext) -> bool
This method tests for !=.
impl Eq for CallContext
impl StructuralEq for CallContext
impl StructuralPartialEq for CallContext
Auto Trait Implementations
impl RefUnwindSafe for CallContext
impl Send for CallContext
impl Sync for CallContext
impl Unpin for CallContext
impl UnwindSafe for CallContext
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
 
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more