referrerpolicy=no-referrer-when-downgrade

Trait relay_utils::BlockNumberBase

source ·
pub trait BlockNumberBase: 'static + From<u32> + UniqueSaturatedInto<u64> + Ord + Clone + Copy + Default + Send + Sync + Debug + Display + Hash + Add<Output = Self> + Sub<Output = Self> + CheckedSub + Saturating + Zero + One { }
Expand description

Block number traits shared by all chains that relay is able to serve.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> BlockNumberBase for T
where T: 'static + From<u32> + UniqueSaturatedInto<u64> + Ord + Clone + Copy + Default + Send + Sync + Debug + Display + Hash + Add<Output = Self> + Sub<Output = Self> + CheckedSub + Saturating + Zero + One,