Open stevefan1999-personal opened 2 months ago
This PR uses https://github.com/dtolnay/dyn-clone and modified some traits to use DynClone, so that eventually the Builder can now be Clone. Notice while the cargo test fully passes for this, this is a potentially ABI breaking change.
DynClone
Builder
Clone
cargo test
This change makes sense to me, but will definitely require a major version bump.
cc @lnicola
This PR uses https://github.com/dtolnay/dyn-clone and modified some traits to use
DynClone
, so that eventually theBuilder
can now beClone
. Notice while thecargo test
fully passes for this, this is a potentially ABI breaking change.