pub struct EVMPayload {
pub _type: u16,
pub chainId: u64,
pub nonce: u16,
pub value: String,
pub gas: u64,
pub maxFeePerGas: u64,
pub maxPriorityFeePerGas: u64,
pub to: String,
}Fields§
§_type: u16§chainId: u64§nonce: u16§value: String§gas: u64§maxFeePerGas: u64§maxPriorityFeePerGas: u64§to: StringTrait Implementations§
Source§impl Debug for EVMPayload
impl Debug for EVMPayload
Auto Trait Implementations§
impl Freeze for EVMPayload
impl RefUnwindSafe for EVMPayload
impl Send for EVMPayload
impl Sync for EVMPayload
impl Unpin for EVMPayload
impl UnwindSafe for EVMPayload
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