pub trait TotalDifficulty {
    // Required method
    fn increment(&mut self, other: Self);
}
Expand description

Define methods that total difficulty should implement.

Required Methods§

source

fn increment(&mut self, other: Self)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl TotalDifficulty for u128

source§

fn increment(&mut self, other: Self)

source§

impl TotalDifficulty for U256

source§

fn increment(&mut self, other: Self)

Implementors§