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