[][src]Trait signrel::SignRel

pub trait SignRel: Copy {
    type Unsigned: SignRel;
    type Signed: SignRel;
}

The relationship between integers differing only by signedness

Associated Types

type Unsigned: SignRel

The unsigned integer type with the same size as Self

type Signed: SignRel

The signed integer type with the same size as Self

Loading content...

Implementors

impl SignRel for i8[src]

type Unsigned = u8

type Signed = i8

impl SignRel for i16[src]

type Unsigned = u16

type Signed = i16

impl SignRel for i32[src]

type Unsigned = u32

type Signed = i32

impl SignRel for i64[src]

type Unsigned = u64

type Signed = i64

impl SignRel for i128[src]

type Unsigned = u128

type Signed = i128

impl SignRel for isize[src]

type Unsigned = usize

type Signed = isize

impl SignRel for u8[src]

type Unsigned = u8

type Signed = i8

impl SignRel for u16[src]

type Unsigned = u16

type Signed = i16

impl SignRel for u32[src]

type Unsigned = u32

type Signed = i32

impl SignRel for u64[src]

type Unsigned = u64

type Signed = i64

impl SignRel for u128[src]

type Unsigned = u128

type Signed = i128

impl SignRel for usize[src]

type Unsigned = usize

type Signed = isize

Loading content...