Trait ToSignedBits

Source
pub trait ToSignedBits {
    // Required method
    fn to_signed_bits<const N: usize>(self) -> Signed<N>;
}

Required Methods§

Source

fn to_signed_bits<const N: usize>(self) -> Signed<N>

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

Source§

fn to_signed_bits<const N: usize>(self) -> Signed<N>

Source§

impl ToSignedBits for i16

Source§

fn to_signed_bits<const N: usize>(self) -> Signed<N>

Source§

impl ToSignedBits for i32

Source§

fn to_signed_bits<const N: usize>(self) -> Signed<N>

Source§

impl ToSignedBits for i64

Source§

fn to_signed_bits<const N: usize>(self) -> Signed<N>

Implementors§