Struct outmove_common::types::effects::ChangeSet[][src]

pub struct ChangeSet {
    pub accounts: BTreeMap<AccountAddress, AccountChangeSet>,
}

A collection of changes to a Move state.

Fields

accounts: BTreeMap<AccountAddress, AccountChangeSet>

Implementations

impl ChangeSet[src]

pub fn new() -> Self[src]

pub fn publish_or_overwrite_module(
    &mut self,
    module_id: ModuleId,
    blob: Vec<u8>
)
[src]

pub fn publish_module(
    &mut self,
    module_id: ModuleId,
    blob: Vec<u8>
) -> Result<()>
[src]

pub fn unpublish_module(&mut self, module_id: ModuleId) -> Result<()>[src]

pub fn publish_or_overwrite_resource(
    &mut self,
    addr: AccountAddress,
    struct_tag: StructTag,
    blob: Vec<u8>
)
[src]

pub fn publish_resource(
    &mut self,
    addr: AccountAddress,
    struct_tag: StructTag,
    blob: Vec<u8>
) -> Result<()>
[src]

pub fn unpublish_resource(
    &mut self,
    addr: AccountAddress,
    struct_tag: StructTag
) -> Result<()>
[src]

pub fn squash(&mut self, other: Self) -> Result<()>[src]

pub fn into_modules(self) -> impl Iterator<Item = (ModuleId, Option<Vec<u8>>)>[src]

pub fn modules(
    &self
) -> impl Iterator<Item = (AccountAddress, &Identifier, Option<&[u8]>)>
[src]

pub fn resources(
    &self
) -> impl Iterator<Item = (AccountAddress, &StructTag, Option<&[u8]>)>
[src]

Trait Implementations

impl Clone for ChangeSet[src]

impl Debug for ChangeSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,