Trait NumBufferTrait

pub trait NumBufferTrait

Trait used to describe the maximum number of digits in decimal base of the implemented integer.

Associated Types

type Buf: AsRef<[MaybeUninit<u8>]> + AsMut<[MaybeUninit<u8>]>;

The actual underlying type.

Associated Constants

const DEFAULT: Self::Buf;

Used for initializing the NumberBuffer value.

Implementors