Skip to main content

PrimStore

Trait PrimStore 

Source
pub trait PrimStore: PrimInt {
    const ZERO: Self;
}

Required Associated Constants§

Source

const ZERO: Self

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

Source§

const ZERO: Self = 0

Source§

impl PrimStore for u16

Source§

const ZERO: Self = 0

Source§

impl PrimStore for u32

Source§

const ZERO: Self = 0

Source§

impl PrimStore for u64

Source§

const ZERO: Self = 0

Source§

impl PrimStore for u128

Source§

const ZERO: Self = 0

Source§

impl PrimStore for usize

Source§

const ZERO: Self = 0

Implementors§