pub trait SpinnerValue: Copy + PartialOrd + Display + Add<Output = Self> + AddAssign + Sub<Output = Self> + SubAssign
where Self: Sized,
{ }

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> SpinnerValue for T
where T: Copy + PartialOrd + Display + Add<Output = Self> + AddAssign + Sub<Output = Self> + SubAssign,