pub struct EthereumSign7702AuthorizationRpcInputParams {
pub chain_id: EthereumSign7702AuthorizationRpcInputParamsChainId,
pub contract: String,
pub nonce: Option<EthereumSign7702AuthorizationRpcInputParamsNonce>,
}Expand description
EthereumSign7702AuthorizationRpcInputParams
JSON schema
{
"type": "object",
"required": [
"chain_id",
"contract"
],
"properties": {
"chain_id": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer",
"maximum": 9007199254740991.0,
"minimum": -9007199254740991.0
}
]
},
"contract": {
"type": "string"
},
"nonce": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer",
"maximum": 9007199254740991.0,
"minimum": -9007199254740991.0
}
]
}
}
}Fields§
§chain_id: EthereumSign7702AuthorizationRpcInputParamsChainId§contract: String§nonce: Option<EthereumSign7702AuthorizationRpcInputParamsNonce>Trait Implementations§
Source§impl Clone for EthereumSign7702AuthorizationRpcInputParams
impl Clone for EthereumSign7702AuthorizationRpcInputParams
Source§fn clone(&self) -> EthereumSign7702AuthorizationRpcInputParams
fn clone(&self) -> EthereumSign7702AuthorizationRpcInputParams
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 EthereumSign7702AuthorizationRpcInputParams
impl<'de> Deserialize<'de> for EthereumSign7702AuthorizationRpcInputParams
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<&EthereumSign7702AuthorizationRpcInputParams> for EthereumSign7702AuthorizationRpcInputParams
impl From<&EthereumSign7702AuthorizationRpcInputParams> for EthereumSign7702AuthorizationRpcInputParams
Source§fn from(value: &EthereumSign7702AuthorizationRpcInputParams) -> Self
fn from(value: &EthereumSign7702AuthorizationRpcInputParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumSign7702AuthorizationRpcInputParams
impl RefUnwindSafe for EthereumSign7702AuthorizationRpcInputParams
impl Send for EthereumSign7702AuthorizationRpcInputParams
impl Sync for EthereumSign7702AuthorizationRpcInputParams
impl Unpin for EthereumSign7702AuthorizationRpcInputParams
impl UnwindSafe for EthereumSign7702AuthorizationRpcInputParams
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