mapper 1.1.4

Mapping macro to help to reduce mapping boilerplate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use mapper_impl::Mapper;

#[derive(Mapper)]
pub struct User{
    #[to()]
    pub name: String
}

pub struct Person{
    pub name: String
}

fn main(){}