[][src]Trait primitive_traits::DropSign

pub trait DropSign: Integer + Signed {
    type Unsigned: AddSign<Signed = Self>;
    fn drop_sign(self) -> Self::Unsigned;
}

Associated Types

type Unsigned: AddSign<Signed = Self>

Loading content...

Required methods

fn drop_sign(self) -> Self::Unsigned

Loading content...

Implementations on Foreign Types

impl DropSign for i8[src]

type Unsigned = u8

impl DropSign for i16[src]

type Unsigned = u16

impl DropSign for i32[src]

type Unsigned = u32

impl DropSign for i64[src]

type Unsigned = u64

impl DropSign for i128[src]

type Unsigned = u128

impl DropSign for isize[src]

Loading content...

Implementors

Loading content...