[][src]Trait primitive_traits::AddSign

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

Associated Types

type Signed: DropSign<Unsigned = Self>

Loading content...

Required methods

fn add_sign(self) -> Self::Signed

Loading content...

Implementations on Foreign Types

impl AddSign for u8[src]

type Signed = i8

impl AddSign for u16[src]

type Signed = i16

impl AddSign for u32[src]

type Signed = i32

impl AddSign for u64[src]

type Signed = i64

impl AddSign for u128[src]

type Signed = i128

impl AddSign for usize[src]

type Signed = isize

Loading content...

Implementors

Loading content...