pub struct VMMessageBuilder<'a> {
pub kind: evmc_call_kind,
pub flags: Flags,
pub depth: i32,
pub gas: i64,
pub destination: Option<&'a Raw>,
pub sender: Option<&'a Raw>,
pub input_data: Option<&'a Vec<u8>>,
pub value: Raw,
pub code: Option<&'a Vec<u8>>,
pub create2_salt: Option<()>,
}
The Message will be restricted and do not modify the storage
Use Create2 EVM call with predefined salt
The call help you generate the contract address.
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.