Skip to main content

SignedInteger

Trait SignedInteger 

Source
pub(crate) trait SignedInteger: Eq {
    const MINUS_ONE: Self;
}

Required Associated Constants§

Source

const MINUS_ONE: Self

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 SignedInteger for i8

Source§

const MINUS_ONE: Self = -1

Source§

impl SignedInteger for i16

Source§

const MINUS_ONE: Self = -1

Source§

impl SignedInteger for i32

Source§

const MINUS_ONE: Self = -1

Source§

impl SignedInteger for i64

Source§

const MINUS_ONE: Self = -1

Source§

impl SignedInteger for i128

Source§

const MINUS_ONE: Self = -1

Source§

impl SignedInteger for isize

Source§

const MINUS_ONE: Self = -1

Implementors§

⚠️ Internal Docs ⚠️ Not Public API 👉 Official Docs Here