Closed Luro02 closed 4 years ago
It should be possible to do this
#[derive(ShortHand)] struct Example { #[shorthand(rename(get = "hello"))] field: String, }
and
#[derive(ShortHand)] struct Example { #[shorthand(rename(get = "hello_{}_{}"))] field: String, }
It should also check for invalid characters, that can not be in a function name, like for example {, }, ; and so on...
{
}
;
It should be possible to do this
and
It should also check for invalid characters, that can not be in a function name, like for example
{
,}
,;
and so on...