Skip to main content

HardFork

Enum HardFork 

Source
#[repr(u8)]
pub enum HardFork {
Show 16 variants V1 = 1, V2 = 2, V3 = 3, V4 = 4, V5 = 5, V6 = 6, V7 = 7, V8 = 8, V9 = 9, V10 = 10, V11 = 11, V12 = 12, V13 = 13, V14 = 14, V15 = 15, V16 = 16,
}
Expand description

An identifier for every hard-fork Monero has had.

Variants§

§

V1 = 1

§

V2 = 2

§

V3 = 3

§

V4 = 4

§

V5 = 5

§

V6 = 6

§

V7 = 7

§

V8 = 8

§

V9 = 9

§

V10 = 10

§

V11 = 11

§

V12 = 12

§

V13 = 13

§

V14 = 14

§

V15 = 15

§

V16 = 16

Implementations§

Source§

impl HardFork

Source

pub const fn is_v_1(&self) -> bool

Returns true if the enum is HardFork::V1 otherwise false

Source

pub const fn is_v_2(&self) -> bool

Returns true if the enum is HardFork::V2 otherwise false

Source

pub const fn is_v_3(&self) -> bool

Returns true if the enum is HardFork::V3 otherwise false

Source

pub const fn is_v_4(&self) -> bool

Returns true if the enum is HardFork::V4 otherwise false

Source

pub const fn is_v_5(&self) -> bool

Returns true if the enum is HardFork::V5 otherwise false

Source

pub const fn is_v_6(&self) -> bool

Returns true if the enum is HardFork::V6 otherwise false

Source

pub const fn is_v_7(&self) -> bool

Returns true if the enum is HardFork::V7 otherwise false

Source

pub const fn is_v_8(&self) -> bool

Returns true if the enum is HardFork::V8 otherwise false

Source

pub const fn is_v_9(&self) -> bool

Returns true if the enum is HardFork::V9 otherwise false

Source

pub const fn is_v_10(&self) -> bool

Returns true if the enum is HardFork::V10 otherwise false

Source

pub const fn is_v_11(&self) -> bool

Returns true if the enum is HardFork::V11 otherwise false

Source

pub const fn is_v_12(&self) -> bool

Returns true if the enum is HardFork::V12 otherwise false

Source

pub const fn is_v_13(&self) -> bool

Returns true if the enum is HardFork::V13 otherwise false

Source

pub const fn is_v_14(&self) -> bool

Returns true if the enum is HardFork::V14 otherwise false

Source

pub const fn is_v_15(&self) -> bool

Returns true if the enum is HardFork::V15 otherwise false

Source

pub const fn is_v_16(&self) -> bool

Returns true if the enum is HardFork::V16 otherwise false

Source§

impl HardFork

Source

pub const fn from_repr(discriminant: u8) -> Option<HardFork>

Try to create Self from the raw representation

Source§

impl HardFork

Source

pub const LATEST: HardFork

The latest HardFork.

assert_eq!(HardFork::LATEST, HardFork::V16);
Source

pub const fn from_version(version: u8) -> Result<HardFork, HardForkError>

Returns the hard-fork for a blocks [BlockHeader::hardfork_version] field.

ref: https://monero-book.cuprate.org/consensus_rules/hardforks.html#blocks-version-and-vote

§Errors

Will return Err if the version is not a valid HardFork.

assert_eq!(HardFork::from_version(0), Err(HardForkError::HardForkUnknown));
assert_eq!(HardFork::from_version(17), Err(HardForkError::HardForkUnknown));

for (version, hf) in HardFork::VARIANTS.iter().enumerate() {
    // +1 because enumerate starts at 0, hf starts at 1.
    assert_eq!(*hf, HardFork::from_version(version as u8 + 1).unwrap());
}
Source

pub fn from_vote(vote: u8) -> HardFork

Returns the hard-fork for a blocks [BlockHeader::hardfork_signal] (vote) field.

https://monero-book.cuprate.org/consensus_rules/hardforks.html#blocks-version-and-vote

// 0 is interpreted as 1.
assert_eq!(HardFork::from_vote(0), HardFork::V1);
// Unknown defaults to `LATEST`.
assert_eq!(HardFork::from_vote(17), HardFork::V16);

for (vote, hf) in HardFork::VARIANTS.iter().enumerate() {
    // +1 because enumerate starts at 0, hf starts at 1.
    assert_eq!(*hf, HardFork::from_vote(vote as u8 + 1));
}
Source

pub fn from_block_header( header: &BlockHeader, ) -> Result<(HardFork, HardFork), HardForkError>

Returns the HardFork version and vote from this block header.

§Errors

Will return Err if the [BlockHeader::hardfork_version] is not a valid HardFork.

Source

pub const fn as_u8(self) -> u8

Returns the raw hard-fork value, as it would appear in [BlockHeader::hardfork_version].

for (i, hf) in HardFork::VARIANTS.iter().enumerate() {
    // +1 because enumerate starts at 0, hf starts at 1.
    assert_eq!(hf.as_u8(), i as u8 + 1);
}
Source

pub fn next_fork(self) -> Option<HardFork>

Returns the next hard-fork.

Source

pub const fn block_time(self) -> Duration

Source

pub const fn is_latest(self) -> bool

Returns true if self is Self::LATEST.


for hf in HardFork::VARIANTS.iter() {
    if *hf == HardFork::LATEST {
        assert!(hf.is_latest());
    } else {
        assert!(!hf.is_latest());
    }
}

Trait Implementations§

Source§

impl Arbitrary for HardFork

Source§

type Parameters = ()

The type of parameters that arbitrary_with accepts for configuration of the generated Strategy. Parameters must implement Default.
Source§

type Strategy = TupleUnion<((u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<TupleUnion<((u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>), (u32, Arc<fn() -> HardFork>))>>))>

The type of Strategy used to generate values of type Self.
Source§

fn arbitrary_with( _top: <HardFork as Arbitrary>::Parameters, ) -> <HardFork as Arbitrary>::Strategy

Generates a Strategy for producing arbitrary values of type the implementing type (Self). The strategy is passed the arguments given in args. Read more
§

fn arbitrary() -> Self::Strategy

Generates a Strategy for producing arbitrary values of type the implementing type (Self). Read more
Source§

impl AsRef<str> for HardFork

Source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for HardFork

Source§

fn clone(&self) -> HardFork

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for HardFork

Source§

impl Debug for HardFork

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for HardFork

Source§

fn default() -> HardFork

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for HardFork

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<HardFork, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for HardFork

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl EnumCount for HardFork

Source§

const COUNT: usize = 16usize

Source§

impl EpeeValue for HardFork

Available on crate feature epee only.
Source§

const MARKER: Marker = u8::MARKER

Source§

fn read<B>(r: &mut B, marker: &Marker) -> Result<HardFork, Error>
where B: Buf,

Source§

fn write<B>(self, w: &mut B) -> Result<(), Error>
where B: BufMut,

Source§

fn should_write(&self) -> bool

Source§

fn epee_default_value() -> Option<Self>

This is different than default field values and instead is the default value of a whole type. Read more
Source§

impl Eq for HardFork

Source§

impl FromStr for HardFork

Source§

type Err = ParseError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<HardFork, <HardFork as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for HardFork

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for HardFork

Source§

fn cmp(&self, other: &HardFork) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for HardFork

Source§

fn eq(&self, other: &HardFork) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialOrd for HardFork

Source§

fn partial_cmp(&self, other: &HardFork) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for HardFork

Source§

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
Source§

impl StructuralPartialEq for HardFork

Source§

impl TryFrom<&str> for HardFork

Source§

type Error = ParseError

The type returned in the event of a conversion error.
Source§

fn try_from(s: &str) -> Result<HardFork, <HardFork as TryFrom<&str>>::Error>

Performs the conversion.
Source§

impl TryFrom<u8> for HardFork

Source§

type Error = HardForkError

The type returned in the event of a conversion error.
Source§

fn try_from(version: u8) -> Result<HardFork, <HardFork as TryFrom<u8>>::Error>

Performs the conversion.
Source§

impl VariantArray for HardFork

Source§

const VARIANTS: &'static [HardFork]

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

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

§

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

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

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

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 1 byte

Size for each variant:

  • V1: 0 bytes
  • V2: 0 bytes
  • V3: 0 bytes
  • V4: 0 bytes
  • V5: 0 bytes
  • V6: 0 bytes
  • V7: 0 bytes
  • V8: 0 bytes
  • V9: 0 bytes
  • V10: 0 bytes
  • V11: 0 bytes
  • V12: 0 bytes
  • V13: 0 bytes
  • V14: 0 bytes
  • V15: 0 bytes
  • V16: 0 bytes