Struct diem_types::on_chain_config::DiemVersion
source · pub struct DiemVersion {
pub major: u64,
}
Expand description
Defines the version of Diem Validator software.
Fields§
§major: u64
Trait Implementations§
source§impl Clone for DiemVersion
impl Clone for DiemVersion
source§fn clone(&self) -> DiemVersion
fn clone(&self) -> DiemVersion
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 Debug for DiemVersion
impl Debug for DiemVersion
source§impl<'de> Deserialize<'de> for DiemVersion
impl<'de> Deserialize<'de> for DiemVersion
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 OnChainConfig for DiemVersion
impl OnChainConfig for DiemVersion
const IDENTIFIER: &'static str = "DiemVersion"
const ADDRESS: &'static str = CONFIG_ADDRESS_STR
const CONFIG_ID: ConfigID = _
fn deserialize_default_impl(bytes: &[u8]) -> Result<Self>
fn deserialize_into_config(bytes: &[u8]) -> Result<Self>
fn fetch_config<T>(storage: &T) -> Option<Self>where T: ConfigStorage,
source§impl Ord for DiemVersion
impl Ord for DiemVersion
source§fn cmp(&self, other: &DiemVersion) -> Ordering
fn cmp(&self, other: &DiemVersion) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<DiemVersion> for DiemVersion
impl PartialEq<DiemVersion> for DiemVersion
source§fn eq(&self, other: &DiemVersion) -> bool
fn eq(&self, other: &DiemVersion) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<DiemVersion> for DiemVersion
impl PartialOrd<DiemVersion> for DiemVersion
source§fn partial_cmp(&self, other: &DiemVersion) -> Option<Ordering>
fn partial_cmp(&self, other: &DiemVersion) -> Option<Ordering>
1.0.0 · source§fn 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 moresource§impl Serialize for DiemVersion
impl Serialize for DiemVersion
impl Eq for DiemVersion
impl StructuralEq for DiemVersion
impl StructuralPartialEq for DiemVersion
Auto Trait Implementations§
impl RefUnwindSafe for DiemVersion
impl Send for DiemVersion
impl Sync for DiemVersion
impl Unpin for DiemVersion
impl UnwindSafe for DiemVersion
Blanket Implementations§
source§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,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> TestOnlyHash for Twhere
T: Serialize + ?Sized,
impl<T> TestOnlyHash for Twhere T: Serialize + ?Sized,
source§fn test_only_hash(&self) -> HashValue
fn test_only_hash(&self) -> HashValue
Generates a hash used only for tests.