#clone #dyn-clone #object-safe #renamed #traits #sized #io-crates-dyn-clone

deprecated objekt

Renamed to dyn-clone: https://crates.io/crates/dyn-clone

4 releases

0.2.0 Dec 23, 2019
0.1.2 Jan 24, 2019
0.1.1 Jun 10, 2018
0.1.0 Jan 13, 2018

#6 in #object-safe

Download history 476/week @ 2023-12-13 396/week @ 2023-12-20 251/week @ 2023-12-27 231/week @ 2024-01-03 433/week @ 2024-01-10 377/week @ 2024-01-17 300/week @ 2024-01-24 248/week @ 2024-01-31 461/week @ 2024-02-07 522/week @ 2024-02-14 453/week @ 2024-02-21 502/week @ 2024-02-28 577/week @ 2024-03-06 327/week @ 2024-03-13 612/week @ 2024-03-20 433/week @ 2024-03-27

2,030 downloads per month
Used in 72 crates (11 directly)

MIT/Apache

6KB

Clone trait that is object-safe

github crates.io docs.rs build status

This crate provides a DynClone trait that can be used in trait objects, and a clone_box function that can clone any sized or dynamically sized implementation of DynClone. Types that implement the standard library's std::clone::Clone trait are automatically usable by a DynClone trait object.

The signature of clone_box is:

fn clone_box<T>(t: &T) -> Box<T>
where
    T: ?Sized + DynClone

Example

use dyn_clone::DynClone;

trait MyTrait: DynClone {
    fn recite(&self);
}

impl MyTrait for String {
    fn recite(&self) {
        println!("{}", self);
    }
}

fn main() {
    let line = "The slithy structs did gyre and gimble the namespace";

    // Build a trait object holding a String.
    // This requires String to implement MyTrait and std::clone::Clone.
    let x: Box<dyn MyTrait> = Box::new(String::from(line));

    x.recite();

    // The type of x2 is a Box<dyn MyTrait> cloned from x.
    let x2 = dyn_clone::clone_box(&*x);

    x2.recite();
}

This crate includes a macro for generating the implementation impl std::clone::Clone for Box<dyn MyTrait> in terms of dyn_clone::clone_box:

// As before.
trait MyTrait: DynClone {
    /* ... */
}

dyn_clone::clone_trait_object!(MyTrait);

// Now data structures containing Box<dyn MyTrait> can derive Clone:
#[derive(Clone)]
struct Container {
    trait_object: Box<dyn MyTrait>,
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps