pub enum ConfirmedTxType {
AcceptedDeploy(u32),
AcceptedExecute(u32),
RejectedDeploy(u32),
RejectedExecute(u32),
}
Variants§
AcceptedDeploy(u32)
A deploy transaction that was accepted.
AcceptedExecute(u32)
An execute transaction that was accepted.
RejectedDeploy(u32)
A deploy transaction that was rejected.
RejectedExecute(u32)
An execute transaction that was rejected.
Trait Implementations§
source§impl Clone for ConfirmedTxType
impl Clone for ConfirmedTxType
source§fn clone(&self) -> ConfirmedTxType
fn clone(&self) -> ConfirmedTxType
Returns a copy 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<'de> Deserialize<'de> for ConfirmedTxType
impl<'de> Deserialize<'de> for ConfirmedTxType
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 Hash for ConfirmedTxType
impl Hash for ConfirmedTxType
source§impl PartialEq for ConfirmedTxType
impl PartialEq for ConfirmedTxType
source§fn eq(&self, other: &ConfirmedTxType) -> bool
fn eq(&self, other: &ConfirmedTxType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ConfirmedTxType
impl Serialize for ConfirmedTxType
impl Copy for ConfirmedTxType
impl Eq for ConfirmedTxType
impl StructuralEq for ConfirmedTxType
impl StructuralPartialEq for ConfirmedTxType
Auto Trait Implementations§
impl RefUnwindSafe for ConfirmedTxType
impl Send for ConfirmedTxType
impl Sync for ConfirmedTxType
impl Unpin for ConfirmedTxType
impl UnwindSafe for ConfirmedTxType
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
§impl<'de, T> DeserializeExt<'de> for Twhere
T: DeserializeOwned,
impl<'de, T> DeserializeExt<'de> for Twhere T: DeserializeOwned,
fn take_from_value<D>( value: &mut Value, field: &str ) -> Result<T, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.