pub struct WriteSetChangeDeleteModule {
pub address: String,
pub state_key_hash: String,
pub module: String,
pub type: Type,
}Fields§
§address: StringA hex encoded 32 byte Aptos account address. This is represented in a string as a 64 character hex string, sometimes shortened by stripping leading 0s, and adding a 0x. For example, address 0x0000000000000000000000000000000000000000000000000000000000000001 is represented as 0x1.
state_key_hash: StringState key hash
module: StringMove module id is a string representation of Move module. Format: {address}::{module name} address should be hex-encoded 32 byte account address that is prefixed with 0x. Module name is case-sensitive.
type: TypeImplementations§
Trait Implementations§
Source§impl Clone for WriteSetChangeDeleteModule
impl Clone for WriteSetChangeDeleteModule
Source§fn clone(&self) -> WriteSetChangeDeleteModule
fn clone(&self) -> WriteSetChangeDeleteModule
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WriteSetChangeDeleteModule
impl Debug for WriteSetChangeDeleteModule
Source§impl Default for WriteSetChangeDeleteModule
impl Default for WriteSetChangeDeleteModule
Source§fn default() -> WriteSetChangeDeleteModule
fn default() -> WriteSetChangeDeleteModule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WriteSetChangeDeleteModule
impl<'de> Deserialize<'de> for WriteSetChangeDeleteModule
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 PartialEq for WriteSetChangeDeleteModule
impl PartialEq for WriteSetChangeDeleteModule
Source§fn eq(&self, other: &WriteSetChangeDeleteModule) -> bool
fn eq(&self, other: &WriteSetChangeDeleteModule) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WriteSetChangeDeleteModule
Auto Trait Implementations§
impl Freeze for WriteSetChangeDeleteModule
impl RefUnwindSafe for WriteSetChangeDeleteModule
impl Send for WriteSetChangeDeleteModule
impl Sync for WriteSetChangeDeleteModule
impl Unpin for WriteSetChangeDeleteModule
impl UnsafeUnpin for WriteSetChangeDeleteModule
impl UnwindSafe for WriteSetChangeDeleteModule
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