pub enum StateChangeValueView {
AccountUpdate {
account_id: AccountId,
account: AccountView,
},
AccountDeletion {
account_id: AccountId,
},
AccessKeyUpdate {
account_id: AccountId,
public_key: PublicKey,
access_key: AccessKeyView,
},
AccessKeyDeletion {
account_id: AccountId,
public_key: PublicKey,
},
DataUpdate {
account_id: AccountId,
key: StoreKey,
value: StoreValue,
},
DataDeletion {
account_id: AccountId,
key: StoreKey,
},
ContractCodeUpdate {
account_id: AccountId,
code: Vec<u8>,
},
ContractCodeDeletion {
account_id: AccountId,
},
RsaKeyUpdate {
account_id: AccountId,
public_key: PublicKey,
rsa_key: RegisterRsa2048KeysAction,
},
RsaKeyDeletion {
account_id: AccountId,
public_key: PublicKey,
},
}Variants§
AccountUpdate
AccountDeletion
AccessKeyUpdate
AccessKeyDeletion
DataUpdate
DataDeletion
ContractCodeUpdate
ContractCodeDeletion
RsaKeyUpdate
RsaKeyDeletion
Trait Implementations§
source§impl Debug for StateChangeValueView
impl Debug for StateChangeValueView
source§impl<'de> Deserialize<'de> for StateChangeValueView
impl<'de> Deserialize<'de> for StateChangeValueView
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<StateChangeValue> for StateChangeValueView
impl From<StateChangeValue> for StateChangeValueView
source§fn from(state_change: StateChangeValue) -> Self
fn from(state_change: StateChangeValue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StateChangeValueView
impl RefUnwindSafe for StateChangeValueView
impl Send for StateChangeValueView
impl Sync for StateChangeValueView
impl Unpin for StateChangeValueView
impl UnwindSafe for StateChangeValueView
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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