Trait rug::float::ToMini

source ·
pub trait ToMini: SealedToMini { }
Expand description

Types implementing this trait can be converted to MiniFloat.

The following are implemented when T implements ToMini:

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ToMini for bool

source§

impl ToMini for f32

source§

impl ToMini for f64

source§

impl ToMini for i8

source§

impl ToMini for i16

source§

impl ToMini for i32

source§

impl ToMini for i64

source§

impl ToMini for i128

source§

impl ToMini for isize

source§

impl ToMini for u8

source§

impl ToMini for u16

source§

impl ToMini for u32

source§

impl ToMini for u64

source§

impl ToMini for u128

source§

impl ToMini for usize

Implementors§