pub struct EthereumSign7702AuthorizationRpcResponseDataAuthorization {
pub chain_id: EthereumSign7702AuthorizationRpcResponseDataAuthorizationChainId,
pub contract: String,
pub nonce: EthereumSign7702AuthorizationRpcResponseDataAuthorizationNonce,
pub r: String,
pub s: String,
pub y_parity: f64,
}Expand description
EthereumSign7702AuthorizationRpcResponseDataAuthorization
JSON schema
{
"type": "object",
"required": [
"chain_id",
"contract",
"nonce",
"r",
"s",
"y_parity"
],
"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
}
]
},
"r": {
"type": "string"
},
"s": {
"type": "string"
},
"y_parity": {
"type": "number"
}
}
}Fields§
§chain_id: EthereumSign7702AuthorizationRpcResponseDataAuthorizationChainId§contract: String§nonce: EthereumSign7702AuthorizationRpcResponseDataAuthorizationNonce§r: String§s: String§y_parity: f64Trait Implementations§
Source§impl Clone for EthereumSign7702AuthorizationRpcResponseDataAuthorization
impl Clone for EthereumSign7702AuthorizationRpcResponseDataAuthorization
Source§fn clone(&self) -> EthereumSign7702AuthorizationRpcResponseDataAuthorization
fn clone(&self) -> EthereumSign7702AuthorizationRpcResponseDataAuthorization
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 EthereumSign7702AuthorizationRpcResponseDataAuthorization
impl<'de> Deserialize<'de> for EthereumSign7702AuthorizationRpcResponseDataAuthorization
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<&EthereumSign7702AuthorizationRpcResponseDataAuthorization> for EthereumSign7702AuthorizationRpcResponseDataAuthorization
impl From<&EthereumSign7702AuthorizationRpcResponseDataAuthorization> for EthereumSign7702AuthorizationRpcResponseDataAuthorization
Source§fn from(
value: &EthereumSign7702AuthorizationRpcResponseDataAuthorization,
) -> Self
fn from( value: &EthereumSign7702AuthorizationRpcResponseDataAuthorization, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumSign7702AuthorizationRpcResponseDataAuthorization
impl RefUnwindSafe for EthereumSign7702AuthorizationRpcResponseDataAuthorization
impl Send for EthereumSign7702AuthorizationRpcResponseDataAuthorization
impl Sync for EthereumSign7702AuthorizationRpcResponseDataAuthorization
impl Unpin for EthereumSign7702AuthorizationRpcResponseDataAuthorization
impl UnwindSafe for EthereumSign7702AuthorizationRpcResponseDataAuthorization
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