pub enum SuiTransactionBlockEffects {
V1(SuiTransactionBlockEffectsV1),
}Variants§
Trait Implementations§
Source§impl Clone for SuiTransactionBlockEffects
impl Clone for SuiTransactionBlockEffects
Source§fn clone(&self) -> SuiTransactionBlockEffects
fn clone(&self) -> SuiTransactionBlockEffects
Returns a duplicate of the value. Read more
1.0.0 · 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 SuiTransactionBlockEffects
impl Debug for SuiTransactionBlockEffects
Source§impl<'de> Deserialize<'de> for SuiTransactionBlockEffects
impl<'de> Deserialize<'de> for SuiTransactionBlockEffects
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 Display for SuiTransactionBlockEffects
impl Display for SuiTransactionBlockEffects
Source§impl From<SuiTransactionBlockEffectsV1> for SuiTransactionBlockEffects
impl From<SuiTransactionBlockEffectsV1> for SuiTransactionBlockEffects
Source§fn from(v: SuiTransactionBlockEffectsV1) -> SuiTransactionBlockEffects
fn from(v: SuiTransactionBlockEffectsV1) -> SuiTransactionBlockEffects
Converts to this type from the input type.
Source§impl SuiTransactionBlockEffectsAPI for SuiTransactionBlockEffects
impl SuiTransactionBlockEffectsAPI for SuiTransactionBlockEffects
Source§fn mutated_excluding_gas(&self) -> Vec<OwnedObjectRef>
fn mutated_excluding_gas(&self) -> Vec<OwnedObjectRef>
Return an iterator of mutated objects, but excluding the gas object.
fn status(&self) -> &SuiExecutionStatus
fn into_status(self) -> SuiExecutionStatus
fn created(&self) -> &[OwnedObjectRef]
fn mutated(&self) -> &[OwnedObjectRef]
fn unwrapped(&self) -> &[OwnedObjectRef]
fn deleted(&self) -> &[SuiObjectRef]
fn unwrapped_then_deleted(&self) -> &[SuiObjectRef]
fn wrapped(&self) -> &[SuiObjectRef]
fn gas_object(&self) -> &OwnedObjectRef
fn events_digest(&self) -> Option<&Digest>
fn dependencies(&self) -> &[Digest]
fn executed_epoch(&self) -> EpochId
fn transaction_digest(&self) -> &Digest
fn gas_cost_summary(&self) -> &GasCostSummary
fn modified_at_versions(&self) -> Vec<(Address, Version)>
fn all_changed_objects(&self) -> Vec<(&OwnedObjectRef, WriteKind)>
fn all_deleted_objects(&self) -> Vec<(&SuiObjectRef, DeleteKind)>
impl Eq for SuiTransactionBlockEffects
impl StructuralPartialEq for SuiTransactionBlockEffects
Auto Trait Implementations§
impl Freeze for SuiTransactionBlockEffects
impl RefUnwindSafe for SuiTransactionBlockEffects
impl Send for SuiTransactionBlockEffects
impl Sync for SuiTransactionBlockEffects
impl Unpin for SuiTransactionBlockEffects
impl UnwindSafe for SuiTransactionBlockEffects
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more