pub struct EthereumSignUserOperationRpcInputParamsUserOperation {
pub call_data: String,
pub call_gas_limit: String,
pub max_fee_per_gas: String,
pub max_priority_fee_per_gas: String,
pub nonce: String,
pub paymaster: String,
pub paymaster_data: String,
pub paymaster_post_op_gas_limit: String,
pub paymaster_verification_gas_limit: String,
pub pre_verification_gas: String,
pub sender: String,
pub verification_gas_limit: String,
}Expand description
EthereumSignUserOperationRpcInputParamsUserOperation
JSON schema
{
"type": "object",
"required": [
"call_data",
"call_gas_limit",
"max_fee_per_gas",
"max_priority_fee_per_gas",
"nonce",
"paymaster",
"paymaster_data",
"paymaster_post_op_gas_limit",
"paymaster_verification_gas_limit",
"pre_verification_gas",
"sender",
"verification_gas_limit"
],
"properties": {
"call_data": {
"type": "string"
},
"call_gas_limit": {
"type": "string"
},
"max_fee_per_gas": {
"type": "string"
},
"max_priority_fee_per_gas": {
"type": "string"
},
"nonce": {
"type": "string"
},
"paymaster": {
"type": "string"
},
"paymaster_data": {
"type": "string"
},
"paymaster_post_op_gas_limit": {
"type": "string"
},
"paymaster_verification_gas_limit": {
"type": "string"
},
"pre_verification_gas": {
"type": "string"
},
"sender": {
"type": "string"
},
"verification_gas_limit": {
"type": "string"
}
}
}Fields§
§call_data: String§call_gas_limit: String§max_fee_per_gas: String§max_priority_fee_per_gas: String§nonce: String§paymaster: String§paymaster_data: String§paymaster_post_op_gas_limit: String§paymaster_verification_gas_limit: String§pre_verification_gas: String§sender: String§verification_gas_limit: StringTrait Implementations§
Source§impl Clone for EthereumSignUserOperationRpcInputParamsUserOperation
impl Clone for EthereumSignUserOperationRpcInputParamsUserOperation
Source§fn clone(&self) -> EthereumSignUserOperationRpcInputParamsUserOperation
fn clone(&self) -> EthereumSignUserOperationRpcInputParamsUserOperation
Returns a duplicate 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<'de> Deserialize<'de> for EthereumSignUserOperationRpcInputParamsUserOperation
impl<'de> Deserialize<'de> for EthereumSignUserOperationRpcInputParamsUserOperation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&EthereumSignUserOperationRpcInputParamsUserOperation> for EthereumSignUserOperationRpcInputParamsUserOperation
impl From<&EthereumSignUserOperationRpcInputParamsUserOperation> for EthereumSignUserOperationRpcInputParamsUserOperation
Source§fn from(value: &EthereumSignUserOperationRpcInputParamsUserOperation) -> Self
fn from(value: &EthereumSignUserOperationRpcInputParamsUserOperation) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumSignUserOperationRpcInputParamsUserOperation
impl RefUnwindSafe for EthereumSignUserOperationRpcInputParamsUserOperation
impl Send for EthereumSignUserOperationRpcInputParamsUserOperation
impl Sync for EthereumSignUserOperationRpcInputParamsUserOperation
impl Unpin for EthereumSignUserOperationRpcInputParamsUserOperation
impl UnsafeUnpin for EthereumSignUserOperationRpcInputParamsUserOperation
impl UnwindSafe for EthereumSignUserOperationRpcInputParamsUserOperation
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