pub struct StateChangeWithCauseViewVariant9Change {
pub account_id: AccountId,
pub code_base64: String,
}
Expand description
StateChangeWithCauseViewVariant9Change
JSON schema
{
"type": "object",
"required": [
"account_id",
"code_base64"
],
"properties": {
"access_key": false,
"account_id": {
"$ref": "#/components/schemas/AccountId"
},
"amount": false,
"code_base64": {
"type": "string"
},
"code_hash": false,
"gas_key": false,
"global_contract_account_id": false,
"global_contract_hash": false,
"index": false,
"key_base64": false,
"locked": false,
"nonce": false,
"public_key": false,
"storage_paid_at": false,
"storage_usage": false,
"value_base64": false
}
}
Fields§
§account_id: AccountId
§code_base64: String
Trait Implementations§
Source§impl Clone for StateChangeWithCauseViewVariant9Change
impl Clone for StateChangeWithCauseViewVariant9Change
Source§fn clone(&self) -> StateChangeWithCauseViewVariant9Change
fn clone(&self) -> StateChangeWithCauseViewVariant9Change
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 StateChangeWithCauseViewVariant9Change
impl<'de> Deserialize<'de> for StateChangeWithCauseViewVariant9Change
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<&StateChangeWithCauseViewVariant9Change> for StateChangeWithCauseViewVariant9Change
impl From<&StateChangeWithCauseViewVariant9Change> for StateChangeWithCauseViewVariant9Change
Source§fn from(value: &StateChangeWithCauseViewVariant9Change) -> Self
fn from(value: &StateChangeWithCauseViewVariant9Change) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StateChangeWithCauseViewVariant9Change
impl RefUnwindSafe for StateChangeWithCauseViewVariant9Change
impl Send for StateChangeWithCauseViewVariant9Change
impl Sync for StateChangeWithCauseViewVariant9Change
impl Unpin for StateChangeWithCauseViewVariant9Change
impl UnwindSafe for StateChangeWithCauseViewVariant9Change
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