pub struct EthereumSignUserOperationRpcResponseData {
pub encoding: EthereumSignUserOperationRpcResponseDataEncoding,
pub signature: String,
}Expand description
EthereumSignUserOperationRpcResponseData
JSON schema
{
"type": "object",
"required": [
"encoding",
"signature"
],
"properties": {
"encoding": {
"type": "string",
"enum": [
"hex"
]
},
"signature": {
"type": "string"
}
}
}Fields§
§encoding: EthereumSignUserOperationRpcResponseDataEncoding§signature: StringTrait Implementations§
Source§impl Clone for EthereumSignUserOperationRpcResponseData
impl Clone for EthereumSignUserOperationRpcResponseData
Source§fn clone(&self) -> EthereumSignUserOperationRpcResponseData
fn clone(&self) -> EthereumSignUserOperationRpcResponseData
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 EthereumSignUserOperationRpcResponseData
impl<'de> Deserialize<'de> for EthereumSignUserOperationRpcResponseData
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<&EthereumSignUserOperationRpcResponseData> for EthereumSignUserOperationRpcResponseData
impl From<&EthereumSignUserOperationRpcResponseData> for EthereumSignUserOperationRpcResponseData
Source§fn from(value: &EthereumSignUserOperationRpcResponseData) -> Self
fn from(value: &EthereumSignUserOperationRpcResponseData) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumSignUserOperationRpcResponseData
impl RefUnwindSafe for EthereumSignUserOperationRpcResponseData
impl Send for EthereumSignUserOperationRpcResponseData
impl Sync for EthereumSignUserOperationRpcResponseData
impl Unpin for EthereumSignUserOperationRpcResponseData
impl UnsafeUnpin for EthereumSignUserOperationRpcResponseData
impl UnwindSafe for EthereumSignUserOperationRpcResponseData
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