#[non_exhaustive]pub enum SuiTransactionBlockKind {
ChangeEpoch(SuiChangeEpoch),
Genesis(SuiGenesisTransaction),
ConsensusCommitPrologue(SuiConsensusCommitPrologue),
ProgrammableTransaction(SuiProgrammableTransactionBlock),
AuthenticatorStateUpdate(SuiAuthenticatorStateUpdate),
RandomnessStateUpdate(SuiRandomnessStateUpdate),
EndOfEpochTransaction(SuiEndOfEpochTransaction),
ConsensusCommitPrologueV2(SuiConsensusCommitPrologueV2),
ConsensusCommitPrologueV3(SuiConsensusCommitPrologueV3),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ChangeEpoch(SuiChangeEpoch)
A system transaction that will update epoch information on-chain.
Genesis(SuiGenesisTransaction)
A system transaction used for initializing the initial state of the chain.
ConsensusCommitPrologue(SuiConsensusCommitPrologue)
A system transaction marking the start of a series of transactions scheduled as part of a checkpoint
ProgrammableTransaction(SuiProgrammableTransactionBlock)
A series of transactions where the results of one transaction can be used in future transactions
AuthenticatorStateUpdate(SuiAuthenticatorStateUpdate)
A transaction which updates global authenticator state
RandomnessStateUpdate(SuiRandomnessStateUpdate)
A transaction which updates global randomness state
EndOfEpochTransaction(SuiEndOfEpochTransaction)
The transaction which occurs only at the end of the epoch
ConsensusCommitPrologueV2(SuiConsensusCommitPrologueV2)
ConsensusCommitPrologueV3(SuiConsensusCommitPrologueV3)
Implementations§
Trait Implementations§
Source§impl Clone for SuiTransactionBlockKind
impl Clone for SuiTransactionBlockKind
Source§fn clone(&self) -> SuiTransactionBlockKind
fn clone(&self) -> SuiTransactionBlockKind
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 SuiTransactionBlockKind
impl Debug for SuiTransactionBlockKind
Source§impl<'de> Deserialize<'de> for SuiTransactionBlockKind
impl<'de> Deserialize<'de> for SuiTransactionBlockKind
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 SuiTransactionBlockKind
impl Display for SuiTransactionBlockKind
Source§impl PartialEq for SuiTransactionBlockKind
impl PartialEq for SuiTransactionBlockKind
Source§impl Serialize for SuiTransactionBlockKind
impl Serialize for SuiTransactionBlockKind
impl Eq for SuiTransactionBlockKind
impl StructuralPartialEq for SuiTransactionBlockKind
Auto Trait Implementations§
impl Freeze for SuiTransactionBlockKind
impl RefUnwindSafe for SuiTransactionBlockKind
impl Send for SuiTransactionBlockKind
impl Sync for SuiTransactionBlockKind
impl Unpin for SuiTransactionBlockKind
impl UnwindSafe for SuiTransactionBlockKind
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