wiwi::num

Trait IntSignedness

Source
pub trait IntSignedness
where Self: Sealed,
{ const SIGNED: bool; }

Required Associated Constants§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl IntSignedness for i8

Source§

const SIGNED: bool = true

Source§

impl IntSignedness for i16

Source§

const SIGNED: bool = true

Source§

impl IntSignedness for i32

Source§

const SIGNED: bool = true

Source§

impl IntSignedness for i64

Source§

const SIGNED: bool = true

Source§

impl IntSignedness for i128

Source§

const SIGNED: bool = true

Source§

impl IntSignedness for isize

Source§

const SIGNED: bool = true

Source§

impl IntSignedness for u8

Source§

const SIGNED: bool = false

Source§

impl IntSignedness for u16

Source§

const SIGNED: bool = false

Source§

impl IntSignedness for u32

Source§

const SIGNED: bool = false

Source§

impl IntSignedness for u64

Source§

const SIGNED: bool = false

Source§

impl IntSignedness for u128

Source§

const SIGNED: bool = false

Source§

impl IntSignedness for usize

Source§

const SIGNED: bool = false

Implementors§