1 2 3 4 5 6 7 8 9 10 11 12 13
use mapper_impl::Mapper; #[derive(Mapper)] pub struct User{ #[to(Person, exclude, strategy=into)] pub name: String } pub struct Person{ pub name: String } fn main(){}