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
sourceimpl Clone for ConsensusFlavor
impl Clone for ConsensusFlavor
sourcefn clone(&self) -> ConsensusFlavor
fn clone(&self) -> ConsensusFlavor
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 moresourceimpl Debug for ConsensusFlavor
impl Debug for ConsensusFlavor
sourceimpl Hash for ConsensusFlavor
impl Hash for ConsensusFlavor
sourceimpl Ord for ConsensusFlavor
impl Ord for ConsensusFlavor
sourcefn cmp(&self, other: &ConsensusFlavor) -> Ordering
fn cmp(&self, other: &ConsensusFlavor) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<ConsensusFlavor> for ConsensusFlavor
impl PartialEq<ConsensusFlavor> for ConsensusFlavor
sourcefn eq(&self, other: &ConsensusFlavor) -> bool
fn eq(&self, other: &ConsensusFlavor) -> bool
sourceimpl PartialOrd<ConsensusFlavor> for ConsensusFlavor
impl PartialOrd<ConsensusFlavor> for ConsensusFlavor
sourcefn partial_cmp(&self, other: &ConsensusFlavor) -> Option<Ordering>
fn partial_cmp(&self, other: &ConsensusFlavor) -> Option<Ordering>
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 moreimpl Copy for ConsensusFlavor
impl Eq for ConsensusFlavor
impl StructuralEq for ConsensusFlavor
impl StructuralPartialEq for ConsensusFlavor
Auto Trait Implementations
impl RefUnwindSafe for ConsensusFlavor
impl Send for ConsensusFlavor
impl Sync for ConsensusFlavor
impl Unpin for ConsensusFlavor
impl UnwindSafe for ConsensusFlavor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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