[][src]Trait fixed::sealed::Fixed

pub trait Fixed: SealedFixed { }

This trait is implemented for all the fixed-point types.

This trait is sealed and cannot be implemented for more types; it is implemented for FixedI8, FixedI16, FixedI32, FixedI64, FixedI128, FixedU8, FixedU16, FixedU32, FixedU64, and FixedU128.

Implementors

impl<Frac> Fixed for FixedI128<Frac> where
    Frac: Unsigned + IsLessOrEqual<U128, Output = True>, 
[src]

impl<Frac> Fixed for FixedI16<Frac> where
    Frac: Unsigned + IsLessOrEqual<U16, Output = True>, 
[src]

impl<Frac> Fixed for FixedI32<Frac> where
    Frac: Unsigned + IsLessOrEqual<U32, Output = True>, 
[src]

impl<Frac> Fixed for FixedI64<Frac> where
    Frac: Unsigned + IsLessOrEqual<U64, Output = True>, 
[src]

impl<Frac> Fixed for FixedI8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

impl<Frac> Fixed for FixedU128<Frac> where
    Frac: Unsigned + IsLessOrEqual<U128, Output = True>, 
[src]

impl<Frac> Fixed for FixedU16<Frac> where
    Frac: Unsigned + IsLessOrEqual<U16, Output = True>, 
[src]

impl<Frac> Fixed for FixedU32<Frac> where
    Frac: Unsigned + IsLessOrEqual<U32, Output = True>, 
[src]

impl<Frac> Fixed for FixedU64<Frac> where
    Frac: Unsigned + IsLessOrEqual<U64, Output = True>, 
[src]

impl<Frac> Fixed for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Loading content...