Trait mutils::num::ToSignedClamped[][src]

pub trait ToSignedClamped {
    type Output: Num;
    fn to_signed_clamped(self) -> Self::Output;
}

Associated Types

Loading content...

Required methods

fn to_signed_clamped(self) -> Self::Output[src]

Loading content...

Implementations on Foreign Types

impl ToSignedClamped for u8[src]

type Output = i16

impl ToSignedClamped for u16[src]

type Output = i32

impl ToSignedClamped for u32[src]

type Output = i64

impl ToSignedClamped for u64[src]

type Output = i64

impl ToSignedClamped for usize[src]

type Output = isize

impl ToSignedClamped for i8[src]

type Output = Self

impl ToSignedClamped for i16[src]

type Output = Self

impl ToSignedClamped for i32[src]

type Output = Self

impl ToSignedClamped for i64[src]

type Output = Self

impl ToSignedClamped for isize[src]

type Output = Self

impl ToSignedClamped for f32[src]

type Output = Self

impl ToSignedClamped for f64[src]

type Output = Self

Loading content...

Implementors

Loading content...