Enum fvm_shared::version::NetworkVersion
source · [−]#[repr(u32)]
#[non_exhaustive]
pub enum NetworkVersion {
Show 17 variants
V0,
V1,
V2,
V3,
V4,
V5,
V6,
V7,
V8,
V9,
V10,
V11,
V12,
V13,
V14,
V15,
V16,
}Expand description
Specifies the network version
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
V0
genesis (specs-actors v0.9.3)
V1
breeze (specs-actors v0.9.7)
V2
smoke (specs-actors v0.9.8)
V3
ignition (specs-actors v0.9.11)
V4
actors v2 (specs-actors v2.0.x)
V5
tape (increases max prove commit size by 10x)
V6
kumquat (specs-actors v2.2.0)
V7
calico (specs-actors v2.3.2)
V8
persian (post-2.3.2 behaviour transition)
V9
orange
V10
actors v3 (specs-actors v3.0.x)
V11
norwegian (specs-actor v3.1.x)
V12
actors v3 (specs-actor v4.0.x)
V13
reserved
V14
actors v6
V15
actors v7
V16
actors v8
Trait Implementations
sourceimpl Clone for NetworkVersion
impl Clone for NetworkVersion
sourcefn clone(&self) -> NetworkVersion
fn clone(&self) -> NetworkVersion
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for NetworkVersion
impl Debug for NetworkVersion
sourceimpl Display for NetworkVersion
impl Display for NetworkVersion
sourceimpl Ord for NetworkVersion
impl Ord for NetworkVersion
sourceimpl PartialEq<NetworkVersion> for NetworkVersion
impl PartialEq<NetworkVersion> for NetworkVersion
sourceimpl PartialOrd<NetworkVersion> for NetworkVersion
impl PartialOrd<NetworkVersion> for NetworkVersion
sourcefn partial_cmp(&self, other: &NetworkVersion) -> Option<Ordering>
fn partial_cmp(&self, other: &NetworkVersion) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl Serialize for NetworkVersion
impl Serialize for NetworkVersion
sourceimpl TryFrom<u32> for NetworkVersion
impl TryFrom<u32> for NetworkVersion
impl Copy for NetworkVersion
impl Eq for NetworkVersion
impl StructuralEq for NetworkVersion
impl StructuralPartialEq for NetworkVersion
Auto Trait Implementations
impl RefUnwindSafe for NetworkVersion
impl Send for NetworkVersion
impl Sync for NetworkVersion
impl Unpin for NetworkVersion
impl UnwindSafe for NetworkVersion
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more