Struct ethers_core::utils::CliqueConfig
source · pub struct CliqueConfig {
pub period: Option<u64>,
pub epoch: Option<u64>,
}
Expand description
Consensus configuration for Clique.
Fields§
§period: Option<u64>
Number of seconds between blocks to enforce.
epoch: Option<u64>
Epoch length to reset votes and checkpoints.
Trait Implementations§
source§impl Clone for CliqueConfig
impl Clone for CliqueConfig
source§fn clone(&self) -> CliqueConfig
fn clone(&self) -> CliqueConfig
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 CliqueConfig
impl Debug for CliqueConfig
source§impl<'de> Deserialize<'de> for CliqueConfig
impl<'de> Deserialize<'de> for CliqueConfig
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 PartialEq for CliqueConfig
impl PartialEq for CliqueConfig
source§fn eq(&self, other: &CliqueConfig) -> bool
fn eq(&self, other: &CliqueConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CliqueConfig
impl Serialize for CliqueConfig
impl Eq for CliqueConfig
impl StructuralPartialEq for CliqueConfig
Auto Trait Implementations§
impl RefUnwindSafe for CliqueConfig
impl Send for CliqueConfig
impl Sync for CliqueConfig
impl Unpin for CliqueConfig
impl UnwindSafe for CliqueConfig
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