-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
It's possible to get Option<ColdString> to be the same size as ColdString by informing the compiler about the available niche of 0 (unless I missed something and 0 is a valid value?).
Can be achieved just by changing
pub struct ColdString([u8; WIDTH]);to
pub struct ColdString {
ptr: NonNull<usize>,
}And then updating all other areas accordingly.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels