Trait signrel::SignRel[][src]

pub trait SignRel {
    type Unsigned;
    type Signed;
}

Expressed relationship between integers differing only by signedness.

Associated Types

The unsigned integer type with the same size as Self.

The signed integer type with the same size as Self.

Implementations on Foreign Types

impl SignRel for isize
[src]

impl SignRel for usize
[src]

impl SignRel for i64
[src]

impl SignRel for u64
[src]

impl SignRel for i32
[src]

impl SignRel for u32
[src]

impl SignRel for i16
[src]

impl SignRel for u16
[src]

impl SignRel for i8
[src]

impl SignRel for u8
[src]

impl SignRel for i128
[src]

impl SignRel for u128
[src]

Implementors