Trait numcodecs_linear_quantize::Unsigned

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

Unsigned binary types.

Required Associated Constants§

source

const ZERO: Self

0x0

Object Safety§

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§