MaterializeInc / rust-sasl

Cyrus SASL bindings for Rust
Apache License 2.0
4 stars 20 forks source link

sasl2-sys: don't derive Copy and Clone for sasl_secret #37

Closed benesch closed 2 years ago

benesch commented 2 years ago

This struct represents a variable-width C struct, so the auto-derived implementations of Copy/Clone are wrong. Just delete those implementations.

Fix #36.