pub trait IsBetween01: IsBetween<Self> + Zero + One { }
Expand description

A value that can tell whether or not it is between 0 and 1 (inclusive).

Implementors§

source§

impl<T> IsBetween01 for Twhere T: IsBetween<T> + Zero + One,