macro_rules! gen_newtype_from { (self = $type:ty, other = $($source:ty),+) => { ... }; }
Generates From implementation for a newtype that delegates to the inner type From.
From