Trait rug::integer::ToSmall

source ·
pub trait ToSmall: ToMini { }
👎Deprecated since 1.23.0: ToMini instead
Expand description

Types implementing this trait can be converted to SmallInteger.

The following are implemented when T implements ToSmall:

This trait is sealed and cannot be implemented for more types; it is implemented for bool and for the integer types i8, i16, i32, i64, i128, isize, u8, u16, u32, u64, u128 and usize.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: ToMini> ToSmall for T