pub struct EthereumTypedDataMessageConditionTypedData {
pub primary_type: String,
pub types: HashMap<String, Vec<EthereumTypedDataMessageConditionTypedDataTypesValueItem>>,
}Expand description
EthereumTypedDataMessageConditionTypedData
JSON schema
{
"type": "object",
"required": [
"primary_type",
"types"
],
"properties": {
"primary_type": {
"type": "string"
},
"types": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"type"
],
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
}
}
}
}Fields§
§primary_type: String§types: HashMap<String, Vec<EthereumTypedDataMessageConditionTypedDataTypesValueItem>>Trait Implementations§
Source§impl Clone for EthereumTypedDataMessageConditionTypedData
impl Clone for EthereumTypedDataMessageConditionTypedData
Source§fn clone(&self) -> EthereumTypedDataMessageConditionTypedData
fn clone(&self) -> EthereumTypedDataMessageConditionTypedData
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 EthereumTypedDataMessageConditionTypedData
impl<'de> Deserialize<'de> for EthereumTypedDataMessageConditionTypedData
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EthereumTypedDataMessageConditionTypedData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EthereumTypedDataMessageConditionTypedData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&EthereumTypedDataMessageConditionTypedData> for EthereumTypedDataMessageConditionTypedData
impl From<&EthereumTypedDataMessageConditionTypedData> for EthereumTypedDataMessageConditionTypedData
Source§fn from(
value: &EthereumTypedDataMessageConditionTypedData,
) -> EthereumTypedDataMessageConditionTypedData
fn from( value: &EthereumTypedDataMessageConditionTypedData, ) -> EthereumTypedDataMessageConditionTypedData
Converts to this type from the input type.
Source§impl Serialize for EthereumTypedDataMessageConditionTypedData
impl Serialize for EthereumTypedDataMessageConditionTypedData
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 EthereumTypedDataMessageConditionTypedData
impl RefUnwindSafe for EthereumTypedDataMessageConditionTypedData
impl Send for EthereumTypedDataMessageConditionTypedData
impl Sync for EthereumTypedDataMessageConditionTypedData
impl Unpin for EthereumTypedDataMessageConditionTypedData
impl UnwindSafe for EthereumTypedDataMessageConditionTypedData
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