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