Struct tor_netdoc::doc::netstatus::ConsensusHeader
source · #[non_exhaustive]pub struct ConsensusHeader {
pub hdr: CommonHeader,
pub consensus_method: u32,
pub shared_rand_prev: Option<SharedRandStatus>,
pub shared_rand_cur: Option<SharedRandStatus>,
}
Expand description
The header of a consensus networkstatus.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.hdr: CommonHeader
Available on crate feature
dangerous-expose-struct-fields
only.Header fields common to votes and consensuses
consensus_method: u32
Available on crate feature
dangerous-expose-struct-fields
only.What “method” was used to produce this consensus? (A consensus method is a version number used by authorities to upgrade the consensus algorithm.)
Available on crate feature
dangerous-expose-struct-fields
only.Global shared-random value for the previous shared-random period.
Available on crate feature
dangerous-expose-struct-fields
only.Global shared-random value for the current shared-random period.
Trait Implementations§
source§impl Clone for ConsensusHeader
impl Clone for ConsensusHeader
source§fn clone(&self) -> ConsensusHeader
fn clone(&self) -> ConsensusHeader
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 moreAuto Trait Implementations§
impl RefUnwindSafe for ConsensusHeader
impl Send for ConsensusHeader
impl Sync for ConsensusHeader
impl Unpin for ConsensusHeader
impl UnwindSafe for ConsensusHeader
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more