Documentation
1
2
3
4
5
6
7
8
/// [`HasConstDummyValue::DUMMY_VALUE`] must be valid.
pub trait HasConstDummyValue {
    const DUMMY_VALUE: Self;
}

impl HasConstDummyValue for char {
    const DUMMY_VALUE: Self = '\0';
}