macro_rules! impl_bidirectional_from {
($type_a:ty, $type_b:ty, [$($field:ident),+ $(,)?]) => { ... };
}Expand description
Generates bidirectional From impls between two types that share
identical field names. Every field is .clone()d.
macro_rules! impl_bidirectional_from {
($type_a:ty, $type_b:ty, [$($field:ident),+ $(,)?]) => { ... };
}Generates bidirectional From impls between two types that share
identical field names. Every field is .clone()d.