macro_rules! impl_value_conversion {
($ty:ty) => { ... };
}
Expand description
Stupid From and Into implementations, because Rust’s orphan rules won’t let me define a generic impl:
macro_rules! impl_value_conversion {
($ty:ty) => { ... };
}
Stupid From and Into implementations, because Rust’s orphan rules won’t let me define a generic impl: