Trait NumBufferTrait

Source
pub trait NumBufferTrait {
    const BUF_SIZE: usize;
}
🔬This is a nightly-only experimental API. (int_format_into #138215)
Expand description

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

Required Associated Constants§

Source

const BUF_SIZE: usize

🔬This is a nightly-only experimental API. (int_format_into #138215)

Maximum number of digits in decimal base of the implemented integer.

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.

Implementors§