Fields-wise types cloning. Nothing more, nothing less.
```rust use clone_fields::{CloneFields, CloneInto, CloneFrom};
// PartialEq and Debug traits are only required for assert
macros in the example.
struct Original<'a, T: Clone> { field1: &'a i64, field2: T, nested: OriginalNested, }
struct OriginalNested { value: i32, }
// S2 might be a foreign type, i.e. declared in a different crate. struct External<'a, T: Clone> { field1: &'a i64, field2: T, nested: ExternalNested, }
struct ExternalNested { value: i32, }
// This struct only exists for the sake of using destinations
attribute with more than one
// type :)
struct ExternalNested2 {
value: i32,
}
fn main() { let obj: Original<_> = Original { field1: &0, field2: String::from("lol"), nested: OriginalNested { value: 15 } }; let cloned: External<_> = obj.cloneinto(); asserteq!(obj.field1, cloned.field1); asserteq!(obj.field2, cloned.field2); asserteq!(obj.nested.value, cloned.nested.value); let cloned2 = Original::clonefrom(&cloned); asserteq!(cloned.field1, cloned2.field1); asserteq!(cloned.field2, cloned2.field2); asserteq!(obj, cloned2); } ```
License: MIT/Apache-2.0