1 2 3 4 5 6 7 8 9 10 11
cfg_if::cfg_if! { if #[cfg(feature = "v1_0")] { mod v1_0; pub use v1_0::*; } else { compile_error!( "You MUST enable one of the crate features to specify minimal \ supported version of 'libde265' API (e.g. v1_0)." ); } }