[][src]Enum zcash_primitives::consensus::NetworkUpgrade

pub enum NetworkUpgrade {
    Overwinter,
    Sapling,
    Blossom,
    Heartwood,
    Canopy,
}

An event that occurs at a specified height on the Zcash chain, at which point the consensus rules enforced by the network are altered.

See ZIP 200 for more details.

Variants

Overwinter

The Overwinter network upgrade.

Sapling

The Sapling network upgrade.

Blossom

The Blossom network upgrade.

Heartwood

The Heartwood network upgrade.

Canopy

The Canopy network upgrade.

Trait Implementations

impl Clone for NetworkUpgrade[src]

impl Copy for NetworkUpgrade[src]

impl Debug for NetworkUpgrade[src]

impl Display for NetworkUpgrade[src]

Auto Trait Implementations

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> From<T> 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> ToString for T where
    T: Display + ?Sized
[src]

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>,