rust-pcap / pcap

Rust language pcap library
Apache License 2.0
620 stars 142 forks source link

Consider using Rust's NonNull to replace Unique #227

Closed Wojtek242 closed 2 years ago

Wojtek242 commented 2 years ago

Unique was partially ported into pcap in #5. However, Unique is permanently experimental as far as I can tell. Would be best to replace it with something from the standard library that is stable, such as NonNull.