rust-minidump / minidump-writer

Rust rewrite of breakpad's minidump_writer
MIT License
68 stars 17 forks source link

Use NonZeroUsize rather than generic NonZero, which is a fairly recent addition. #136

Closed afranchuk closed 1 month ago

Jake-Shadle commented 2 months ago

Not sure I see the point of this? NonZeroUsize is literally just a type alias for NonZero<usize>.

afranchuk commented 2 months ago

Generic NonZero<T> is only available since 1.79.0.