pub struct ConsensusParams {
pub timeout_ms: u64,
pub repeat_round_for_first_leader: usize,
}
Fields§
§timeout_ms: u64
§repeat_round_for_first_leader: usize
Trait Implementations§
Source§impl Clone for ConsensusParams
impl Clone for ConsensusParams
Source§fn clone(&self) -> ConsensusParams
fn clone(&self) -> ConsensusParams
Returns a duplicate 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 ConsensusParams
impl Debug for ConsensusParams
Source§impl<'de> Deserialize<'de> for ConsensusParams
impl<'de> Deserialize<'de> for ConsensusParams
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConsensusParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConsensusParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConsensusParams
impl PartialEq for ConsensusParams
Source§impl Serialize for ConsensusParams
impl Serialize for ConsensusParams
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for ConsensusParams
impl StructuralPartialEq for ConsensusParams
Auto Trait Implementations§
impl Freeze for ConsensusParams
impl RefUnwindSafe for ConsensusParams
impl Send for ConsensusParams
impl Sync for ConsensusParams
impl Unpin for ConsensusParams
impl UnwindSafe for ConsensusParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.