macro_rules! k8s_if_1_31 {
($($tt:tt)*) => { ... };
}
Expand description
This macro evaluates to its contents if the v1_31
feature is enabled, otherwise it evaluates to nothing.
ยงExamples
k8s_if_1_31! {
use k8s_openapi::api::core::v1 as api;
}