Trait laminarmq_io::io_types::Quantifier

source ·
pub trait Quantifier: Add<Output = Self> + Sub + AddAssign + SubAssign + Ord + FromPrimitive + ToPrimitive + Unsigned + Zero + CheckedSub + Clone + Copy { }

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Quantifier for T
where T: Add<Output = Self> + Sub + AddAssign + SubAssign + Ord + FromPrimitive + ToPrimitive + Unsigned + Zero + CheckedSub + Clone + Copy,