pub trait Number: 'static + Bounded + Num + Copy + Send + Sync + Unpin + Ord + Hash + Debug + Display + Into<u128> + TryFrom<u128> + TryFrom<usize> + TryInto<usize> where
    Self: Serialize,
    for<'de> Self: Deserialize<'de>, 
{ }
Expand description

Trait bound of both CoordNum as well as RoundNum.

Implementors