macro_rules! option_like_impl {
(
$name:ident,
$none:ident,
$some:ident,
$is_none:ident,
$is_some:ident $(,)?
) => { ... };
}Expand description
Creates the inherent implementation block for an option-like enum.