macro_rules! impl_try_narrow {
($target:ty; $($from:ty),+ $(,)?) => { ... };
}Expand description
Implement fallible narrowing TryCoerce<$target> for each $from via
try_into (overflow → CoerceError::Overflow).
macro_rules! impl_try_narrow {
($target:ty; $($from:ty),+ $(,)?) => { ... };
}Implement fallible narrowing TryCoerce<$target> for each $from via
try_into (overflow → CoerceError::Overflow).