Unsigned

Trait Unsigned 

Source
pub(crate) trait Unsigned: Integer {
    // Required method
    fn fmt(self, buf: &mut Self::Buffer) -> usize;
}

Required Methods§

Source

fn fmt(self, buf: &mut Self::Buffer) -> usize

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 Unsigned for u8

Source§

fn fmt(self, buf: &mut Self::Buffer) -> usize

Source§

impl Unsigned for u16

Source§

fn fmt(self, buf: &mut Self::Buffer) -> usize

Source§

impl Unsigned for u32

Source§

fn fmt(self, buf: &mut Self::Buffer) -> usize

Source§

impl Unsigned for u64

Source§

fn fmt(self, buf: &mut Self::Buffer) -> usize

Source§

impl Unsigned for u128

Source§

fn fmt(self, buf: &mut Self::Buffer) -> usize

Implementors§