1 2 3 4 5 6 7 8 9 10 11
use crate::scalar::{SignedInt, UnsignedInt}; /// Provides the corresponding signed integer type. pub trait SignedEquivalent { type Signed: SignedInt; } /// Provides the corresponding unsigned integer type. pub trait UnsignedEquivalent { type Unsigned: UnsignedInt; }