pub struct DeterministicAccountStateInitV1 {
pub code: GlobalContractIdentifier,
pub data: HashMap<String, String>,
}Expand description
DeterministicAccountStateInitV1
JSON schema
{
"type": "object",
"required": [
"code",
"data"
],
"properties": {
"code": {
"$ref": "#/components/schemas/GlobalContractIdentifier"
},
"data": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
}Fields§
§code: GlobalContractIdentifier§data: HashMap<String, String>Trait Implementations§
Source§impl Clone for DeterministicAccountStateInitV1
impl Clone for DeterministicAccountStateInitV1
Source§fn clone(&self) -> DeterministicAccountStateInitV1
fn clone(&self) -> DeterministicAccountStateInitV1
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 DeterministicAccountStateInitV1
impl<'de> Deserialize<'de> for DeterministicAccountStateInitV1
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<&DeterministicAccountStateInitV1> for DeterministicAccountStateInitV1
impl From<&DeterministicAccountStateInitV1> for DeterministicAccountStateInitV1
Source§fn from(value: &DeterministicAccountStateInitV1) -> Self
fn from(value: &DeterministicAccountStateInitV1) -> Self
Converts to this type from the input type.
Source§impl From<DeterministicAccountStateInitV1> for DeterministicAccountStateInit
impl From<DeterministicAccountStateInitV1> for DeterministicAccountStateInit
Source§fn from(value: DeterministicAccountStateInitV1) -> Self
fn from(value: DeterministicAccountStateInitV1) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeterministicAccountStateInitV1
impl RefUnwindSafe for DeterministicAccountStateInitV1
impl Send for DeterministicAccountStateInitV1
impl Sync for DeterministicAccountStateInitV1
impl Unpin for DeterministicAccountStateInitV1
impl UnwindSafe for DeterministicAccountStateInitV1
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