Int

Trait Int 

Source
pub trait Int: Sealed { }
Expand description

The trait for the underlying machine integer types that can be used to represent a posit (only satisfied by i8, i16, i32, i64, and i128).

This is a sealed type.

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

Source§

impl Int for i16

Source§

impl Int for i32

Source§

impl Int for i64

Source§

impl Int for i128

Implementors§