pub struct EthereumSign7702AuthorizationRpcResponseData {
pub authorization: EthereumSign7702AuthorizationRpcResponseDataAuthorization,
}Expand description
EthereumSign7702AuthorizationRpcResponseData
JSON schema
{
"type": "object",
"required": [
"authorization"
],
"properties": {
"authorization": {
"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§
Trait Implementations§
Source§impl Clone for EthereumSign7702AuthorizationRpcResponseData
impl Clone for EthereumSign7702AuthorizationRpcResponseData
Source§fn clone(&self) -> EthereumSign7702AuthorizationRpcResponseData
fn clone(&self) -> EthereumSign7702AuthorizationRpcResponseData
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 EthereumSign7702AuthorizationRpcResponseData
impl<'de> Deserialize<'de> for EthereumSign7702AuthorizationRpcResponseData
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EthereumSign7702AuthorizationRpcResponseData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EthereumSign7702AuthorizationRpcResponseData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&EthereumSign7702AuthorizationRpcResponseData> for EthereumSign7702AuthorizationRpcResponseData
impl From<&EthereumSign7702AuthorizationRpcResponseData> for EthereumSign7702AuthorizationRpcResponseData
Source§fn from(
value: &EthereumSign7702AuthorizationRpcResponseData,
) -> EthereumSign7702AuthorizationRpcResponseData
fn from( value: &EthereumSign7702AuthorizationRpcResponseData, ) -> EthereumSign7702AuthorizationRpcResponseData
Converts to this type from the input type.
Source§impl Serialize for EthereumSign7702AuthorizationRpcResponseData
impl Serialize for EthereumSign7702AuthorizationRpcResponseData
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for EthereumSign7702AuthorizationRpcResponseData
impl RefUnwindSafe for EthereumSign7702AuthorizationRpcResponseData
impl Send for EthereumSign7702AuthorizationRpcResponseData
impl Sync for EthereumSign7702AuthorizationRpcResponseData
impl Unpin for EthereumSign7702AuthorizationRpcResponseData
impl UnwindSafe for EthereumSign7702AuthorizationRpcResponseData
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