pub struct StateChangeValueViewContentSubtype4 {
pub account_id: AccountId,
pub key_base64: String,
pub value_base64: String,
}Expand description
StateChangeValueViewContentSubtype4
JSON schema
{
"type": "object",
"required": [
"account_id",
"key_base64",
"value_base64"
],
"properties": {
"account_id": {
"$ref": "#/components/schemas/AccountId"
},
"key_base64": {
"type": "string",
"format": "bytes"
},
"value_base64": {
"type": "string",
"format": "bytes"
}
}
}Fields§
§account_id: AccountId§key_base64: String§value_base64: StringTrait Implementations§
Source§impl Clone for StateChangeValueViewContentSubtype4
impl Clone for StateChangeValueViewContentSubtype4
Source§fn clone(&self) -> StateChangeValueViewContentSubtype4
fn clone(&self) -> StateChangeValueViewContentSubtype4
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for StateChangeValueViewContentSubtype4
impl<'de> Deserialize<'de> for StateChangeValueViewContentSubtype4
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<StateChangeValueViewContentSubtype4, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StateChangeValueViewContentSubtype4, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&StateChangeValueViewContentSubtype4> for StateChangeValueViewContentSubtype4
impl From<&StateChangeValueViewContentSubtype4> for StateChangeValueViewContentSubtype4
Source§fn from(
value: &StateChangeValueViewContentSubtype4,
) -> StateChangeValueViewContentSubtype4
fn from( value: &StateChangeValueViewContentSubtype4, ) -> StateChangeValueViewContentSubtype4
Converts to this type from the input type.
Source§impl Serialize for StateChangeValueViewContentSubtype4
impl Serialize for StateChangeValueViewContentSubtype4
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 StateChangeValueViewContentSubtype4
impl RefUnwindSafe for StateChangeValueViewContentSubtype4
impl Send for StateChangeValueViewContentSubtype4
impl Sync for StateChangeValueViewContentSubtype4
impl Unpin for StateChangeValueViewContentSubtype4
impl UnwindSafe for StateChangeValueViewContentSubtype4
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