Struct cfx_parity_trace_types::action_types::Create
source · pub struct Create {
pub space: Space,
pub from: Address,
pub value: U256,
pub gas: U256,
pub init: Bytes,
pub create_type: CreateType,
}
Expand description
Description of a create action, either a CREATE
operation or a create
transaction.
Fields§
§space: Space
Space
from: Address
The address of the creator.
value: U256
The value with which the new account is endowed.
gas: U256
The gas available for the creation init code.
init: Bytes
The init code.
create_type: CreateType
The create type CREATE
or CREATE2
Implementations§
Trait Implementations§
source§impl PartialEq for Create
impl PartialEq for Create
impl StructuralPartialEq for Create
Auto Trait Implementations§
impl RefUnwindSafe for Create
impl Send for Create
impl Sync for Create
impl Unpin for Create
impl UnwindSafe for Create
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