Default conversion for structures with same fields of the same name
I discovered this way to do the same job of this crate: https://stackoverflow.com/questions/57477967/how-can-i-use-serde-to-serialize-a-struct-to-another-rust-data-structure
But apparently my way to do it with From is faster : https://github.com/serde-rs/json/issues/724
Some projects which use derive proc macros need separates structures with similar "structures" to make different things. For example :
default-conversion = "0.1.0"
```rust struct B { a: i32, };
struct InputB { a: i32, };
struct A { a: String, b: i32, c: B };
struct InputA { a: String, b: i32, #[IntoType(B)] c: InputB };
let a = InputA { a: String::from("test"), b: 2, c: InputB { a: 3 } };
let b = A::from(a); ```
```rust struct B { a: i32, };
struct InputB { a: i32, };
impl From
struct A { a: String, b: i32, c: B };
struct InputA { a: String, b: i32, #[IntoType(B)] c: InputB };
impl From
let a = InputA { a: String::from("test"), b: 2, c: InputB { a: 3 } };
let b = A::from(a); ```
Detailed explanations in docs (soon xd).
IntoDefault
is the main derive macro to invoke the from implementation.
IntoStruct
the attribute proc macro to define the type in which we want to implement the conversion. #[IntoStruct(TYPE_OF_STRUCT)]