#[repr(u8)]pub enum OpType {
Genesis = 0,
StateExtension = 1,
StateTransition = 2,
}
Expand description
Node type: genesis, extensions and state transitions
Variants§
Genesis = 0
Genesis: single operation per contract, defining contract and committing to a specific schema and underlying chain hash
StateExtension = 1
Multiple points for decentralized & unowned contract extension, committing either to a genesis or some state transition via their valencies
StateTransition = 2
State transition performing owned change to the state data and committing to (potentially multiple) ancestors (i.e. genesis, extensions and/or other state transitions) via spending corresponding transaction outputs assigned some state by ancestors
Trait Implementations§
Source§impl<'de> Deserialize<'de> for OpType
impl<'de> Deserialize<'de> for OpType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OpType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OpType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for OpType
impl Ord for OpType
Source§impl PartialOrd for OpType
impl PartialOrd for OpType
Source§impl Serialize for OpType
impl Serialize for OpType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for OpType
impl Eq for OpType
impl StructuralPartialEq for OpType
Auto Trait Implementations§
impl Freeze for OpType
impl RefUnwindSafe for OpType
impl Send for OpType
impl Sync for OpType
impl Unpin for OpType
impl UnwindSafe for OpType
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.