[][src]Enum web3::types::TransactionCondition

pub enum TransactionCondition {
    Block(u64),
    Timestamp(u64),
}

Represents condition on minimum block number or block timestamp.

Variants

Block(u64)

Valid at this minimum block number.

Timestamp(u64)

Valid at given unix time.

Trait Implementations

impl Clone for TransactionCondition[src]

impl Debug for TransactionCondition[src]

impl<'de> Deserialize<'de> for TransactionCondition[src]

impl Eq for TransactionCondition[src]

impl Hash for TransactionCondition[src]

impl PartialEq<TransactionCondition> for TransactionCondition[src]

impl Serialize for TransactionCondition[src]

impl StructuralEq for TransactionCondition[src]

impl StructuralPartialEq for TransactionCondition[src]

Auto Trait Implementations

impl RefUnwindSafe for TransactionCondition

impl Send for TransactionCondition

impl Sync for TransactionCondition

impl Unpin for TransactionCondition

impl UnwindSafe for TransactionCondition

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,