pub struct DeleteModule {
pub address: String,
pub state_key_hash: String,
pub module: String,
}Expand description
DeleteModule : Delete a module
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.
Implementations§
Source§impl DeleteModule
impl DeleteModule
Trait Implementations§
Source§impl Clone for DeleteModule
impl Clone for DeleteModule
Source§fn clone(&self) -> DeleteModule
fn clone(&self) -> DeleteModule
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 DeleteModule
impl Debug for DeleteModule
Source§impl Default for DeleteModule
impl Default for DeleteModule
Source§fn default() -> DeleteModule
fn default() -> DeleteModule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteModule
impl<'de> Deserialize<'de> for DeleteModule
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 DeleteModule
impl PartialEq for DeleteModule
Source§fn eq(&self, other: &DeleteModule) -> bool
fn eq(&self, other: &DeleteModule) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeleteModule
impl Serialize for DeleteModule
impl StructuralPartialEq for DeleteModule
Auto Trait Implementations§
impl Freeze for DeleteModule
impl RefUnwindSafe for DeleteModule
impl Send for DeleteModule
impl Sync for DeleteModule
impl Unpin for DeleteModule
impl UnsafeUnpin for DeleteModule
impl UnwindSafe for DeleteModule
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