Struct cfx_parity_trace_types::action_types::CallResult
source · pub struct CallResult {
pub outcome: Outcome,
pub gas_left: U256,
pub return_data: Bytes,
}
Expand description
Description of the result of a call action.
Fields§
§outcome: Outcome
The outcome of the result
gas_left: U256
The amount of gas left
return_data: Bytes
Output data
Trait Implementations§
source§impl Clone for CallResult
impl Clone for CallResult
source§fn clone(&self) -> CallResult
fn clone(&self) -> CallResult
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 CallResult
impl Debug for CallResult
source§impl Decodable for CallResult
impl Decodable for CallResult
source§impl Encodable for CallResult
impl Encodable for CallResult
source§impl PartialEq for CallResult
impl PartialEq for CallResult
source§fn eq(&self, other: &CallResult) -> bool
fn eq(&self, other: &CallResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CallResult
impl Serialize for CallResult
impl StructuralPartialEq for CallResult
Auto Trait Implementations§
impl RefUnwindSafe for CallResult
impl Send for CallResult
impl Sync for CallResult
impl Unpin for CallResult
impl UnwindSafe for CallResult
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