1pub trait ConstDefault { 2 const DEFAULT: Self; 3} 4 5/// Re-exporting `Default` to prevent naming pollution. 6pub use core::default::Default;