Oct 27 04:25:36.104 INFO checking gdemarcsek/learn-rust against try#19f01b935b91481fd445b16b533d2f87661bf12e for pr-55192-2 Oct 27 04:25:36.104 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192-2/worker-2/try#19f01b935b91481fd445b16b533d2f87661bf12e:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/pr-55192-2/try#19f01b935b91481fd445b16b533d2f87661bf12e:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +19f01b935b91481fd445b16b533d2f87661bf12e-alt check --frozen --all --all-targets" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 27 04:25:36.511 INFO blam! 5ac4da96ceb6668904802adb77e4987808957aeea888ce43ce89071358aeaba8 Oct 27 04:25:36.514 INFO running `"docker" "start" "-a" "5ac4da96ceb6668904802adb77e4987808957aeea888ce43ce89071358aeaba8"` Oct 27 04:25:38.039 INFO kablam! usermod: no changes Oct 27 04:25:38.099 INFO kablam! Checking learn-rust v0.1.0 (/source) Oct 27 04:25:38.827 INFO kablam! warning: unused import: `std::*` Oct 27 04:25:38.827 INFO kablam! --> src/main.rs:297:9 Oct 27 04:25:38.827 INFO kablam! | Oct 27 04:25:38.829 INFO kablam! 297 | use std::*; // glob import from Rust's standard library Oct 27 04:25:38.829 INFO kablam! | ^^^^^^ Oct 27 04:25:38.829 INFO kablam! | Oct 27 04:25:38.829 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 27 04:25:38.829 INFO kablam! Oct 27 04:25:38.855 INFO kablam! warning: unused import: `std::*` Oct 27 04:25:38.855 INFO kablam! --> src/main.rs:297:9 Oct 27 04:25:38.855 INFO kablam! | Oct 27 04:25:38.855 INFO kablam! 297 | use std::*; // glob import from Rust's standard library Oct 27 04:25:38.856 INFO kablam! | ^^^^^^ Oct 27 04:25:38.856 INFO kablam! | Oct 27 04:25:38.856 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 27 04:25:38.856 INFO kablam! Oct 27 04:25:38.993 INFO kablam! warning: unreachable pattern Oct 27 04:25:38.994 INFO kablam! --> src/main.rs:269:9 Oct 27 04:25:38.994 INFO kablam! | Oct 27 04:25:38.994 INFO kablam! 269 | _ => -1, // _ is a placeholder that matches any value - if we put it as last, this will mean what the "default" label menas for "switch" in C++ Oct 27 04:25:38.994 INFO kablam! | ^ Oct 27 04:25:38.994 INFO kablam! | Oct 27 04:25:38.994 INFO kablam! = note: #[warn(unreachable_patterns)] on by default Oct 27 04:25:38.994 INFO kablam! Oct 27 04:25:38.994 INFO kablam! warning: unused variable: `x` Oct 27 04:25:38.994 INFO kablam! --> src/main.rs:17:9 Oct 27 04:25:38.994 INFO kablam! | Oct 27 04:25:38.994 INFO kablam! 17 | let x = 42; // (type is inferred by the compiler whenever possible) Oct 27 04:25:38.994 INFO kablam! | ^ help: consider using `_x` instead Oct 27 04:25:38.994 INFO kablam! | Oct 27 04:25:38.994 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 27 04:25:38.994 INFO kablam! Oct 27 04:25:38.997 INFO kablam! warning: variable `x` is assigned to, but never used Oct 27 04:25:38.997 INFO kablam! --> src/main.rs:19:13 Oct 27 04:25:38.997 INFO kablam! | Oct 27 04:25:38.997 INFO kablam! 19 | let mut x = 42; // Now 'x' is declared to be mutable, thus... Oct 27 04:25:38.997 INFO kablam! | ^ Oct 27 04:25:38.997 INFO kablam! | Oct 27 04:25:38.997 INFO kablam! = note: consider using `_x` instead Oct 27 04:25:38.997 INFO kablam! Oct 27 04:25:38.997 INFO kablam! warning: value assigned to `x` is never read Oct 27 04:25:38.997 INFO kablam! --> src/main.rs:20:5 Oct 27 04:25:38.997 INFO kablam! | Oct 27 04:25:38.997 INFO kablam! 20 | x = 21; // its value can be changed later on Oct 27 04:25:38.997 INFO kablam! | ^ Oct 27 04:25:38.997 INFO kablam! | Oct 27 04:25:38.997 INFO kablam! = note: #[warn(unused_assignments)] on by default Oct 27 04:25:38.997 INFO kablam! Oct 27 04:25:38.997 INFO kablam! warning: unused variable: `s` Oct 27 04:25:38.997 INFO kablam! --> src/main.rs:40:13 Oct 27 04:25:38.997 INFO kablam! | Oct 27 04:25:38.997 INFO kablam! 40 | let s = String::from("dynamically allocated string"); // s owns the allocated memory... Oct 27 04:25:38.997 INFO kablam! | ^ help: consider using `_s` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `y` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:50:9 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 50 | let y = x; // a copy of the value of 'x' Oct 27 04:25:38.998 INFO kablam! | ^ help: consider using `_y` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `s4` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:72:9 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 72 | let s4 = gives_ownership(); Oct 27 04:25:38.998 INFO kablam! | ^^ help: consider using `_s4` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `r1` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:105:13 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 105 | let r1 = &mut s1; Oct 27 04:25:38.998 INFO kablam! | ^^ help: consider using `_r1` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `r2` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:110:9 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 110 | let r2 = &s1; // but out of the scope of 'r1', we can create a reference again... Oct 27 04:25:38.998 INFO kablam! | ^^ help: consider using `_r2` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `r3` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:111:9 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 111 | let r3 = &s1; // ...even multiple immutable ones Oct 27 04:25:38.998 INFO kablam! | ^^ help: consider using `_r3` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: value assigned to `slice3` is never read Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:150:13 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 150 | let mut slice3 = &s[1..6]; Oct 27 04:25:38.998 INFO kablam! | ^^^^^^ Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `slice4` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:155:9 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 155 | let slice4: &[i32]; // the type of each item must be 'i32' Oct 27 04:25:38.998 INFO kablam! | ^^^^^^ help: consider using `_slice4` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `red` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:191:9 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 191 | let red = RGBColor(0xff, 0x00, 0x00); Oct 27 04:25:38.998 INFO kablam! | ^^^ help: consider using `_red` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `foreign` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:233:9 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 233 | let foreign = IpAddress::V6(314159263, 123442); Oct 27 04:25:38.998 INFO kablam! | ^^^^^^^ help: consider using `_foreign` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `some_ip` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:238:9 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 238 | let some_ip = Some(home); Oct 27 04:25:38.998 INFO kablam! | ^^^^^^^ help: consider using `_some_ip` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `absent_ip` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:240:9 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 240 | let absent_ip: Option = None; Oct 27 04:25:38.998 INFO kablam! | ^^^^^^^^^ help: consider using `_absent_ip` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:38.998 INFO kablam! warning: unused variable: `x` Oct 27 04:25:38.998 INFO kablam! --> src/main.rs:243:9 Oct 27 04:25:38.998 INFO kablam! | Oct 27 04:25:38.998 INFO kablam! 243 | let x: i8 = 5; Oct 27 04:25:38.998 INFO kablam! | ^ help: consider using `_x` instead Oct 27 04:25:38.998 INFO kablam! Oct 27 04:25:39.010 INFO kablam! warning: unused variable: `y` Oct 27 04:25:39.010 INFO kablam! --> src/main.rs:244:9 Oct 27 04:25:39.010 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! 244 | let y: Option = Some(5); Oct 27 04:25:39.011 INFO kablam! | ^ help: consider using `_y` instead Oct 27 04:25:39.011 INFO kablam! Oct 27 04:25:39.011 INFO kablam! warning: unused variable: `retcode` Oct 27 04:25:39.011 INFO kablam! --> src/main.rs:259:9 Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! 259 | let retcode = match error { // match forces us to cover all possible cases Oct 27 04:25:39.011 INFO kablam! | ^^^^^^^ help: consider using `_retcode` instead Oct 27 04:25:39.011 INFO kablam! Oct 27 04:25:39.011 INFO kablam! warning: variable does not need to be mutable Oct 27 04:25:39.011 INFO kablam! --> src/main.rs:139:9 Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! 139 | let mut s = String::from("hello world"); Oct 27 04:25:39.011 INFO kablam! | ----^ Oct 27 04:25:39.011 INFO kablam! | | Oct 27 04:25:39.011 INFO kablam! | help: remove this `mut` Oct 27 04:25:39.011 INFO kablam! warning: unreachable pattern Oct 27 04:25:39.011 INFO kablam! --> src/main.rs:269:9 Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! 269 | _ => -1, // _ is a placeholder that matches any value - if we put it as last, this will mean what the "default" label menas for "switch" in C++ Oct 27 04:25:39.011 INFO kablam! | ^ Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! = note: #[warn(unreachable_patterns)] on by default Oct 27 04:25:39.011 INFO kablam! Oct 27 04:25:39.011 INFO kablam! warning: unused variable: `x` Oct 27 04:25:39.011 INFO kablam! --> src/main.rs:17:9 Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! 17 | let x = 42; // (type is inferred by the compiler whenever possible) Oct 27 04:25:39.011 INFO kablam! | ^ help: consider using `_x` instead Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 27 04:25:39.011 INFO kablam! Oct 27 04:25:39.011 INFO kablam! warning: variable `x` is assigned to, but never used Oct 27 04:25:39.011 INFO kablam! --> src/main.rs:19:13 Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! 19 | let mut x = 42; // Now 'x' is declared to be mutable, thus... Oct 27 04:25:39.011 INFO kablam! | ^ Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! = note: consider using `_x` instead Oct 27 04:25:39.011 INFO kablam! Oct 27 04:25:39.011 INFO kablam! warning: value assigned to `x` is never read Oct 27 04:25:39.011 INFO kablam! --> src/main.rs:20:5 Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! 20 | x = 21; // its value can be changed later on Oct 27 04:25:39.011 INFO kablam! | ^ Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! = note: #[warn(unused_assignments)] on by default Oct 27 04:25:39.011 INFO kablam! Oct 27 04:25:39.011 INFO kablam! warning: unused variable: `s` Oct 27 04:25:39.011 INFO kablam! --> src/main.rs:40:13 Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! 40 | let s = String::from("dynamically allocated string"); // s owns the allocated memory... Oct 27 04:25:39.011 INFO kablam! | ^ help: consider using `_s` instead Oct 27 04:25:39.011 INFO kablam! Oct 27 04:25:39.011 INFO kablam! warning: unused variable: `y` Oct 27 04:25:39.011 INFO kablam! --> src/main.rs:50:9 Oct 27 04:25:39.011 INFO kablam! | Oct 27 04:25:39.011 INFO kablam! 50 | let y = x; // a copy of the value of 'x' Oct 27 04:25:39.011 INFO kablam! | ^ help: consider using `_y` instead Oct 27 04:25:39.011 INFO kablam! Oct 27 04:25:39.011 INFO kablam! warning: unused variable: `s4` Oct 27 04:25:39.011 INFO kablam! --> src/main.rs:72:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 72 | let s4 = gives_ownership(); Oct 27 04:25:39.012 INFO kablam! | ^^ help: consider using `_s4` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `r1` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:105:13 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 105 | let r1 = &mut s1; Oct 27 04:25:39.012 INFO kablam! | ^^ help: consider using `_r1` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `r2` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:110:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 110 | let r2 = &s1; // but out of the scope of 'r1', we can create a reference again... Oct 27 04:25:39.012 INFO kablam! | ^^ help: consider using `_r2` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `r3` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:111:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 111 | let r3 = &s1; // ...even multiple immutable ones Oct 27 04:25:39.012 INFO kablam! | ^^ help: consider using `_r3` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: value assigned to `slice3` is never read Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:150:13 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 150 | let mut slice3 = &s[1..6]; Oct 27 04:25:39.012 INFO kablam! | ^^^^^^ Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `slice4` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:155:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 155 | let slice4: &[i32]; // the type of each item must be 'i32' Oct 27 04:25:39.012 INFO kablam! | ^^^^^^ help: consider using `_slice4` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `red` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:191:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 191 | let red = RGBColor(0xff, 0x00, 0x00); Oct 27 04:25:39.012 INFO kablam! | ^^^ help: consider using `_red` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `foreign` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:233:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 233 | let foreign = IpAddress::V6(314159263, 123442); Oct 27 04:25:39.012 INFO kablam! | ^^^^^^^ help: consider using `_foreign` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `some_ip` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:238:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 238 | let some_ip = Some(home); Oct 27 04:25:39.012 INFO kablam! | ^^^^^^^ help: consider using `_some_ip` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `absent_ip` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:240:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 240 | let absent_ip: Option = None; Oct 27 04:25:39.012 INFO kablam! | ^^^^^^^^^ help: consider using `_absent_ip` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `x` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:243:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 243 | let x: i8 = 5; Oct 27 04:25:39.012 INFO kablam! | ^ help: consider using `_x` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `y` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:244:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 244 | let y: Option = Some(5); Oct 27 04:25:39.012 INFO kablam! | ^ help: consider using `_y` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.012 INFO kablam! warning: unused variable: `retcode` Oct 27 04:25:39.012 INFO kablam! --> src/main.rs:259:9 Oct 27 04:25:39.012 INFO kablam! | Oct 27 04:25:39.012 INFO kablam! 259 | let retcode = match error { // match forces us to cover all possible cases Oct 27 04:25:39.012 INFO kablam! | ^^^^^^^ help: consider using `_retcode` instead Oct 27 04:25:39.012 INFO kablam! Oct 27 04:25:39.015 INFO kablam! | Oct 27 04:25:39.015 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 27 04:25:39.015 INFO kablam! Oct 27 04:25:39.015 INFO kablam! warning: variable does not need to be mutable Oct 27 04:25:39.015 INFO kablam! --> src/main.rs:139:9 Oct 27 04:25:39.015 INFO kablam! | Oct 27 04:25:39.015 INFO kablam! 139 | let mut s = String::from("hello world"); Oct 27 04:25:39.015 INFO kablam! | ----^ Oct 27 04:25:39.015 INFO kablam! | | Oct 27 04:25:39.015 INFO kablam! | help: remove this `mut` Oct 27 04:25:39.015 INFO kablam! | Oct 27 04:25:39.015 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 27 04:25:39.015 INFO kablam! Oct 27 04:25:39.018 INFO kablam! warning: variant is never constructed: `NetworkError` Oct 27 04:25:39.018 INFO kablam! --> src/main.rs:252:9 Oct 27 04:25:39.018 INFO kablam! | Oct 27 04:25:39.018 INFO kablam! 252 | NetworkError, Oct 27 04:25:39.018 INFO kablam! | ^^^^^^^^^^^^ Oct 27 04:25:39.018 INFO kablam! | Oct 27 04:25:39.018 INFO kablam! = note: #[warn(dead_code)] on by default Oct 27 04:25:39.018 INFO kablam! Oct 27 04:25:39.019 INFO kablam! warning: variant is never constructed: `SerilizationError` Oct 27 04:25:39.019 INFO kablam! --> src/main.rs:253:9 Oct 27 04:25:39.019 INFO kablam! | Oct 27 04:25:39.019 INFO kablam! 253 | SerilizationError(String), Oct 27 04:25:39.019 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 04:25:39.019 INFO kablam! Oct 27 04:25:39.019 INFO kablam! warning: function is never used: `closures` Oct 27 04:25:39.019 INFO kablam! --> src/main.rs:310:1 Oct 27 04:25:39.019 INFO kablam! | Oct 27 04:25:39.019 INFO kablam! 310 | fn closures() { Oct 27 04:25:39.019 INFO kablam! | ^^^^^^^^^^^^^ Oct 27 04:25:39.019 INFO kablam! Oct 27 04:25:39.023 INFO kablam! warning: variable `className` should have a snake case name such as `class_name` Oct 27 04:25:39.023 INFO kablam! --> src/main.rs:264:41 Oct 27 04:25:39.023 INFO kablam! | Oct 27 04:25:39.023 INFO kablam! 264 | RPCCallError::SerilizationError(className) => { Oct 27 04:25:39.023 INFO kablam! | ^^^^^^^^^ Oct 27 04:25:39.023 INFO kablam! | Oct 27 04:25:39.023 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 27 04:25:39.023 INFO kablam! Oct 27 04:25:39.039 INFO kablam! warning: variant is never constructed: `NetworkError` Oct 27 04:25:39.039 INFO kablam! --> src/main.rs:252:9 Oct 27 04:25:39.039 INFO kablam! | Oct 27 04:25:39.039 INFO kablam! 252 | NetworkError, Oct 27 04:25:39.039 INFO kablam! | ^^^^^^^^^^^^ Oct 27 04:25:39.039 INFO kablam! | Oct 27 04:25:39.039 INFO kablam! = note: #[warn(dead_code)] on by default Oct 27 04:25:39.039 INFO kablam! Oct 27 04:25:39.039 INFO kablam! warning: variant is never constructed: `SerilizationError` Oct 27 04:25:39.039 INFO kablam! --> src/main.rs:253:9 Oct 27 04:25:39.039 INFO kablam! | Oct 27 04:25:39.039 INFO kablam! 253 | SerilizationError(String), Oct 27 04:25:39.039 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 04:25:39.039 INFO kablam! Oct 27 04:25:39.039 INFO kablam! warning: function is never used: `closures` Oct 27 04:25:39.039 INFO kablam! --> src/main.rs:310:1 Oct 27 04:25:39.039 INFO kablam! | Oct 27 04:25:39.039 INFO kablam! 310 | fn closures() { Oct 27 04:25:39.039 INFO kablam! | ^^^^^^^^^^^^^ Oct 27 04:25:39.039 INFO kablam! Oct 27 04:25:39.039 INFO kablam! warning: variable `className` should have a snake case name such as `class_name` Oct 27 04:25:39.039 INFO kablam! --> src/main.rs:264:41 Oct 27 04:25:39.039 INFO kablam! | Oct 27 04:25:39.039 INFO kablam! 264 | RPCCallError::SerilizationError(className) => { Oct 27 04:25:39.039 INFO kablam! | ^^^^^^^^^ Oct 27 04:25:39.039 INFO kablam! | Oct 27 04:25:39.039 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 27 04:25:39.039 INFO kablam! Oct 27 04:25:39.087 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.01s Oct 27 04:25:39.087 INFO kablam! su: No module specific data is present Oct 27 04:25:40.519 INFO running `"docker" "rm" "-f" "5ac4da96ceb6668904802adb77e4987808957aeea888ce43ce89071358aeaba8"` Oct 27 04:25:40.759 INFO blam! 5ac4da96ceb6668904802adb77e4987808957aeea888ce43ce89071358aeaba8