qadapt/src/const_init.rs

5 lines
169 B
Rust

/// Anything that can be initialized with a `const` value.
pub(crate) trait ConstInit {
/// The `const` default initializer value for `Self`.
const INIT: Self;
}