ni 0.2.7

Small limited alloc-free named identifier
Documentation
1
2
3
4
5
6
7
8
9
use {crate::Name, bytemuck::NoUninit};

// SAFETY: the `Name` type
// * is inhabited.
// * has no paddings.
// * content is `NoUninit` (implicitly).
// * is `repr(C)`
// * doesn't contain any interior mutability.
unsafe impl NoUninit for Name {}