A library for cloning trait objects.
This library depends on an undocumented detail of fat pointer layouts.
For that reason, this library is intentionally marked as unstable.
```rust use cloneintobox::{CloneIntoBox, CloneIntoBoxExt};
// Make the trait a subtrait of CloneIntoBox
pub trait MyTrait: CloneIntoBox {
fn hello(&self) -> String;
}
// Manually implement Clone
using clone_into_box
impl Clone for Box
struct Foo(String);
impl MyTrait for Foo { fn hello(&self) -> String { format!("Hello, {}!", self.0) } }
fn main() {
let x: Box
```rust use cloneintobox::{CloneIntoBox, CloneIntoBoxExt};
// Use a "new trait" pattern to create a trait for ExistingTrait + CloneIntoBox
pub trait FnClone: Fn() -> String + CloneIntoBox {}
impl
// Manually implement Clone
using clone_into_box
impl Clone for Box
fn main() {
let name = String::from("John");
let x: Box