numcodecs_linear_quantize

Trait Unsigned

Source
pub trait Unsigned: Copy {
    const ZERO: Self;
}
Expand description

Unsigned binary types.

Required Associated Constants§

Source

const ZERO: Self

0x0

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§

const ZERO: Self = 0u8

Source§

impl Unsigned for u16

Source§

const ZERO: Self = 0u16

Source§

impl Unsigned for u32

Source§

const ZERO: Self = 0u32

Source§

impl Unsigned for u64

Source§

const ZERO: Self = 0u64

Implementors§