pub enum WriteSetChange {
DeleteModule(Box<WriteSetChangeDeleteModule>),
DeleteResource(Box<WriteSetChangeDeleteResource>),
DeleteTableItem(Box<WriteSetChangeDeleteTableItem>),
WriteModule(Box<WriteSetChangeWriteModule>),
WriteResource(Box<WriteSetChangeWriteResource>),
WriteTableItem(Box<WriteSetChangeWriteTableItem>),
}Expand description
WriteSetChange : A final state change of a transaction on a resource or module
Variants§
DeleteModule(Box<WriteSetChangeDeleteModule>)
DeleteResource(Box<WriteSetChangeDeleteResource>)
DeleteTableItem(Box<WriteSetChangeDeleteTableItem>)
WriteModule(Box<WriteSetChangeWriteModule>)
WriteResource(Box<WriteSetChangeWriteResource>)
WriteTableItem(Box<WriteSetChangeWriteTableItem>)
Trait Implementations§
Source§impl Clone for WriteSetChange
impl Clone for WriteSetChange
Source§fn clone(&self) -> WriteSetChange
fn clone(&self) -> WriteSetChange
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 WriteSetChange
impl Debug for WriteSetChange
Source§impl Default for WriteSetChange
impl Default for WriteSetChange
Source§impl<'de> Deserialize<'de> for WriteSetChange
impl<'de> Deserialize<'de> for WriteSetChange
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 WriteSetChange
impl PartialEq for WriteSetChange
Source§fn eq(&self, other: &WriteSetChange) -> bool
fn eq(&self, other: &WriteSetChange) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WriteSetChange
impl Serialize for WriteSetChange
impl StructuralPartialEq for WriteSetChange
Auto Trait Implementations§
impl Freeze for WriteSetChange
impl RefUnwindSafe for WriteSetChange
impl Send for WriteSetChange
impl Sync for WriteSetChange
impl Unpin for WriteSetChange
impl UnsafeUnpin for WriteSetChange
impl UnwindSafe for WriteSetChange
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