macro_rules! opt_extern_c_fn {
($($args:ident),* -> $ret:ident) => { ... };
}
Expand description
Expands to an Option<extern "C" fn>
type with the given argument types and
return type. Designed for use with unsafe_impl_for_power_set
.
macro_rules! opt_extern_c_fn {
($($args:ident),* -> $ret:ident) => { ... };
}
Expands to an Option<extern "C" fn>
type with the given argument types and
return type. Designed for use with unsafe_impl_for_power_set
.