let compiler = match rustc_minor_version() {
Some(compiler) => compiler,
None => return,
};
if compiler < 33 { // Exhaustive integer patterns. On older compilers, a final `_` arm is // required even if every possible integer value is otherwise covered. // https://github.com/rust-lang/rust/issues/50907
println!("cargo:rustc-cfg=no_exhaustive_int_match");
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.