Enum tor_netdoc::doc::netstatus::ConsensusFlavor
source · #[non_exhaustive]
pub enum ConsensusFlavor {
Microdesc,
Ns,
}
Expand description
A recognized ‘flavor’ of consensus document.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Microdesc
A “microdesc”-flavored consensus. This is the one that clients and relays use today.
Ns
A “networkstatus”-flavored consensus. It’s used for historical and network-health purposes. Instead of listing microdescriptor digests, it lists digests of full relay descriptors.
Implementations§
Trait Implementations§
source§impl Clone for ConsensusFlavor
impl Clone for ConsensusFlavor
source§fn clone(&self) -> ConsensusFlavor
fn clone(&self) -> ConsensusFlavor
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 ConsensusFlavor
impl Debug for ConsensusFlavor
source§impl Hash for ConsensusFlavor
impl Hash for ConsensusFlavor
source§impl Ord for ConsensusFlavor
impl Ord for ConsensusFlavor
source§fn cmp(&self, other: &ConsensusFlavor) -> Ordering
fn cmp(&self, other: &ConsensusFlavor) -> 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<ConsensusFlavor> for ConsensusFlavor
impl PartialEq<ConsensusFlavor> for ConsensusFlavor
source§fn eq(&self, other: &ConsensusFlavor) -> bool
fn eq(&self, other: &ConsensusFlavor) -> bool
source§impl PartialOrd<ConsensusFlavor> for ConsensusFlavor
impl PartialOrd<ConsensusFlavor> for ConsensusFlavor
source§fn partial_cmp(&self, other: &ConsensusFlavor) -> Option<Ordering>
fn partial_cmp(&self, other: &ConsensusFlavor) -> 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 more