Oct 21 17:43:06.439 INFO checking gdemarcsek/learn-rust against master#155510e377ae2a8d8ee0dad1a5f809c9062a5526 for pr-55192 Oct 21 17:43:06.441 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192/worker-1/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/pr-55192/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/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 +155510e377ae2a8d8ee0dad1a5f809c9062a5526-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 21 17:43:06.914 INFO blam! 8b8df65cb48ad238259d4b1ae53564237ce5c878f754fcedd6e14f3222c09728 Oct 21 17:43:06.916 INFO running `"docker" "start" "-a" "8b8df65cb48ad238259d4b1ae53564237ce5c878f754fcedd6e14f3222c09728"` Oct 21 17:43:08.435 INFO kablam! usermod: no changes Oct 21 17:43:08.501 INFO kablam! Checking learn-rust v0.1.0 (/source) Oct 21 17:43:09.037 INFO kablam! warning: unused import: `std::*` Oct 21 17:43:09.037 INFO kablam! --> src/main.rs:297:9 Oct 21 17:43:09.037 INFO kablam! | Oct 21 17:43:09.038 INFO kablam! 297 | use std::*; // glob import from Rust's standard library Oct 21 17:43:09.038 INFO kablam! | ^^^^^^ Oct 21 17:43:09.039 INFO kablam! | Oct 21 17:43:09.039 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 21 17:43:09.039 INFO kablam! Oct 21 17:43:09.160 INFO kablam! warning: unused import: `std::*` Oct 21 17:43:09.160 INFO kablam! --> src/main.rs:297:9 Oct 21 17:43:09.160 INFO kablam! | Oct 21 17:43:09.160 INFO kablam! 297 | use std::*; // glob import from Rust's standard library Oct 21 17:43:09.160 INFO kablam! | ^^^^^^ Oct 21 17:43:09.160 INFO kablam! | Oct 21 17:43:09.160 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 21 17:43:09.160 INFO kablam! Oct 21 17:43:09.256 INFO kablam! warning: unreachable pattern Oct 21 17:43:09.256 INFO kablam! --> src/main.rs:269:9 Oct 21 17:43:09.256 INFO kablam! | Oct 21 17:43:09.256 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 21 17:43:09.256 INFO kablam! | ^ Oct 21 17:43:09.256 INFO kablam! | Oct 21 17:43:09.256 INFO kablam! = note: #[warn(unreachable_patterns)] on by default Oct 21 17:43:09.256 INFO kablam! Oct 21 17:43:09.256 INFO kablam! warning: unused variable: `x` Oct 21 17:43:09.256 INFO kablam! --> src/main.rs:17:9 Oct 21 17:43:09.256 INFO kablam! | Oct 21 17:43:09.256 INFO kablam! 17 | let x = 42; // (type is inferred by the compiler whenever possible) Oct 21 17:43:09.256 INFO kablam! | ^ help: consider using `_x` instead Oct 21 17:43:09.256 INFO kablam! | Oct 21 17:43:09.256 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 21 17:43:09.256 INFO kablam! Oct 21 17:43:09.256 INFO kablam! warning: variable `x` is assigned to, but never used Oct 21 17:43:09.256 INFO kablam! --> src/main.rs:19:13 Oct 21 17:43:09.256 INFO kablam! | Oct 21 17:43:09.256 INFO kablam! 19 | let mut x = 42; // Now 'x' is declared to be mutable, thus... Oct 21 17:43:09.256 INFO kablam! | ^ Oct 21 17:43:09.256 INFO kablam! | Oct 21 17:43:09.256 INFO kablam! = note: consider using `_x` instead Oct 21 17:43:09.256 INFO kablam! Oct 21 17:43:09.256 INFO kablam! warning: value assigned to `x` is never read Oct 21 17:43:09.256 INFO kablam! --> src/main.rs:20:5 Oct 21 17:43:09.256 INFO kablam! | Oct 21 17:43:09.256 INFO kablam! 20 | x = 21; // its value can be changed later on Oct 21 17:43:09.256 INFO kablam! | ^ Oct 21 17:43:09.256 INFO kablam! | Oct 21 17:43:09.256 INFO kablam! = note: #[warn(unused_assignments)] on by default Oct 21 17:43:09.256 INFO kablam! Oct 21 17:43:09.256 INFO kablam! warning: unused variable: `s` Oct 21 17:43:09.256 INFO kablam! --> src/main.rs:40:13 Oct 21 17:43:09.256 INFO kablam! | Oct 21 17:43:09.256 INFO kablam! 40 | let s = String::from("dynamically allocated string"); // s owns the allocated memory... Oct 21 17:43:09.256 INFO kablam! | ^ help: consider using `_s` instead Oct 21 17:43:09.256 INFO kablam! Oct 21 17:43:09.256 INFO kablam! warning: unused variable: `y` Oct 21 17:43:09.256 INFO kablam! --> src/main.rs:50:9 Oct 21 17:43:09.256 INFO kablam! | Oct 21 17:43:09.256 INFO kablam! 50 | let y = x; // a copy of the value of 'x' Oct 21 17:43:09.257 INFO kablam! | ^ help: consider using `_y` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `s4` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:72:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 72 | let s4 = gives_ownership(); Oct 21 17:43:09.257 INFO kablam! | ^^ help: consider using `_s4` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `r1` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:105:13 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 105 | let r1 = &mut s1; Oct 21 17:43:09.257 INFO kablam! | ^^ help: consider using `_r1` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `r2` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:110:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 110 | let r2 = &s1; // but out of the scope of 'r1', we can create a reference again... Oct 21 17:43:09.257 INFO kablam! | ^^ help: consider using `_r2` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `r3` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:111:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 111 | let r3 = &s1; // ...even multiple immutable ones Oct 21 17:43:09.257 INFO kablam! | ^^ help: consider using `_r3` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: value assigned to `slice3` is never read Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:150:13 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 150 | let mut slice3 = &s[1..6]; Oct 21 17:43:09.257 INFO kablam! | ^^^^^^ Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `slice4` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:155:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 155 | let slice4: &[i32]; // the type of each item must be 'i32' Oct 21 17:43:09.257 INFO kablam! | ^^^^^^ help: consider using `_slice4` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `red` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:191:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 191 | let red = RGBColor(0xff, 0x00, 0x00); Oct 21 17:43:09.257 INFO kablam! | ^^^ help: consider using `_red` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `foreign` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:233:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 233 | let foreign = IpAddress::V6(314159263, 123442); Oct 21 17:43:09.257 INFO kablam! | ^^^^^^^ help: consider using `_foreign` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `some_ip` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:238:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 238 | let some_ip = Some(home); Oct 21 17:43:09.257 INFO kablam! | ^^^^^^^ help: consider using `_some_ip` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `absent_ip` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:240:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 240 | let absent_ip: Option = None; Oct 21 17:43:09.257 INFO kablam! | ^^^^^^^^^ help: consider using `_absent_ip` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `x` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:243:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 243 | let x: i8 = 5; Oct 21 17:43:09.257 INFO kablam! | ^ help: consider using `_x` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `y` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:244:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 244 | let y: Option = Some(5); Oct 21 17:43:09.257 INFO kablam! | ^ help: consider using `_y` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.257 INFO kablam! warning: unused variable: `retcode` Oct 21 17:43:09.257 INFO kablam! --> src/main.rs:259:9 Oct 21 17:43:09.257 INFO kablam! | Oct 21 17:43:09.257 INFO kablam! 259 | let retcode = match error { // match forces us to cover all possible cases Oct 21 17:43:09.257 INFO kablam! | ^^^^^^^ help: consider using `_retcode` instead Oct 21 17:43:09.257 INFO kablam! Oct 21 17:43:09.272 INFO kablam! warning: variable does not need to be mutable Oct 21 17:43:09.272 INFO kablam! --> src/main.rs:139:9 Oct 21 17:43:09.272 INFO kablam! | Oct 21 17:43:09.272 INFO kablam! 139 | let mut s = String::from("hello world"); Oct 21 17:43:09.272 INFO kablam! | ----^ Oct 21 17:43:09.272 INFO kablam! | | Oct 21 17:43:09.272 INFO kablam! | help: remove this `mut` Oct 21 17:43:09.272 INFO kablam! | Oct 21 17:43:09.272 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 21 17:43:09.272 INFO kablam! Oct 21 17:43:09.280 INFO kablam! warning: variant is never constructed: `NetworkError` Oct 21 17:43:09.280 INFO kablam! --> src/main.rs:252:9 Oct 21 17:43:09.280 INFO kablam! | Oct 21 17:43:09.280 INFO kablam! 252 | NetworkError, Oct 21 17:43:09.280 INFO kablam! | ^^^^^^^^^^^^ Oct 21 17:43:09.280 INFO kablam! | Oct 21 17:43:09.280 INFO kablam! = note: #[warn(dead_code)] on by default Oct 21 17:43:09.280 INFO kablam! Oct 21 17:43:09.280 INFO kablam! warning: variant is never constructed: `SerilizationError` Oct 21 17:43:09.280 INFO kablam! --> src/main.rs:253:9 Oct 21 17:43:09.280 INFO kablam! | Oct 21 17:43:09.280 INFO kablam! 253 | SerilizationError(String), Oct 21 17:43:09.280 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 17:43:09.280 INFO kablam! Oct 21 17:43:09.280 INFO kablam! warning: function is never used: `closures` Oct 21 17:43:09.280 INFO kablam! --> src/main.rs:310:1 Oct 21 17:43:09.280 INFO kablam! | Oct 21 17:43:09.280 INFO kablam! 310 | fn closures() { Oct 21 17:43:09.280 INFO kablam! | ^^^^^^^^^^^^^ Oct 21 17:43:09.280 INFO kablam! Oct 21 17:43:09.280 INFO kablam! warning: variable `className` should have a snake case name such as `class_name` Oct 21 17:43:09.281 INFO kablam! --> src/main.rs:264:41 Oct 21 17:43:09.281 INFO kablam! | Oct 21 17:43:09.281 INFO kablam! 264 | RPCCallError::SerilizationError(className) => { Oct 21 17:43:09.281 INFO kablam! | ^^^^^^^^^ Oct 21 17:43:09.281 INFO kablam! | Oct 21 17:43:09.281 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 21 17:43:09.281 INFO kablam! Oct 21 17:43:09.324 INFO kablam! warning: unreachable pattern Oct 21 17:43:09.324 INFO kablam! --> src/main.rs:269:9 Oct 21 17:43:09.324 INFO kablam! | Oct 21 17:43:09.324 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 21 17:43:09.324 INFO kablam! | ^ Oct 21 17:43:09.324 INFO kablam! | Oct 21 17:43:09.324 INFO kablam! = note: #[warn(unreachable_patterns)] on by default Oct 21 17:43:09.324 INFO kablam! Oct 21 17:43:09.324 INFO kablam! warning: unused variable: `x` Oct 21 17:43:09.324 INFO kablam! --> src/main.rs:17:9 Oct 21 17:43:09.324 INFO kablam! | Oct 21 17:43:09.324 INFO kablam! 17 | let x = 42; // (type is inferred by the compiler whenever possible) Oct 21 17:43:09.324 INFO kablam! | ^ help: consider using `_x` instead Oct 21 17:43:09.324 INFO kablam! | Oct 21 17:43:09.324 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 21 17:43:09.324 INFO kablam! Oct 21 17:43:09.324 INFO kablam! warning: variable `x` is assigned to, but never used Oct 21 17:43:09.324 INFO kablam! --> src/main.rs:19:13 Oct 21 17:43:09.324 INFO kablam! | Oct 21 17:43:09.324 INFO kablam! 19 | let mut x = 42; // Now 'x' is declared to be mutable, thus... Oct 21 17:43:09.324 INFO kablam! | ^ Oct 21 17:43:09.324 INFO kablam! | Oct 21 17:43:09.324 INFO kablam! = note: consider using `_x` instead Oct 21 17:43:09.324 INFO kablam! Oct 21 17:43:09.324 INFO kablam! warning: value assigned to `x` is never read Oct 21 17:43:09.324 INFO kablam! --> src/main.rs:20:5 Oct 21 17:43:09.324 INFO kablam! | Oct 21 17:43:09.324 INFO kablam! 20 | x = 21; // its value can be changed later on Oct 21 17:43:09.324 INFO kablam! | ^ Oct 21 17:43:09.324 INFO kablam! | Oct 21 17:43:09.324 INFO kablam! = note: #[warn(unused_assignments)] on by default Oct 21 17:43:09.324 INFO kablam! Oct 21 17:43:09.324 INFO kablam! warning: unused variable: `s` Oct 21 17:43:09.324 INFO kablam! --> src/main.rs:40:13 Oct 21 17:43:09.324 INFO kablam! | Oct 21 17:43:09.324 INFO kablam! 40 | let s = String::from("dynamically allocated string"); // s owns the allocated memory... Oct 21 17:43:09.324 INFO kablam! | ^ help: consider using `_s` instead Oct 21 17:43:09.324 INFO kablam! Oct 21 17:43:09.324 INFO kablam! warning: unused variable: `y` Oct 21 17:43:09.324 INFO kablam! --> src/main.rs:50:9 Oct 21 17:43:09.324 INFO kablam! | Oct 21 17:43:09.324 INFO kablam! 50 | let y = x; // a copy of the value of 'x' Oct 21 17:43:09.324 INFO kablam! | ^ help: consider using `_y` instead Oct 21 17:43:09.324 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `s4` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:72:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 72 | let s4 = gives_ownership(); Oct 21 17:43:09.325 INFO kablam! | ^^ help: consider using `_s4` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `r1` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:105:13 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 105 | let r1 = &mut s1; Oct 21 17:43:09.325 INFO kablam! | ^^ help: consider using `_r1` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `r2` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:110:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 110 | let r2 = &s1; // but out of the scope of 'r1', we can create a reference again... Oct 21 17:43:09.325 INFO kablam! | ^^ help: consider using `_r2` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `r3` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:111:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 111 | let r3 = &s1; // ...even multiple immutable ones Oct 21 17:43:09.325 INFO kablam! | ^^ help: consider using `_r3` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: value assigned to `slice3` is never read Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:150:13 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 150 | let mut slice3 = &s[1..6]; Oct 21 17:43:09.325 INFO kablam! | ^^^^^^ Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `slice4` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:155:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 155 | let slice4: &[i32]; // the type of each item must be 'i32' Oct 21 17:43:09.325 INFO kablam! | ^^^^^^ help: consider using `_slice4` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `red` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:191:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 191 | let red = RGBColor(0xff, 0x00, 0x00); Oct 21 17:43:09.325 INFO kablam! | ^^^ help: consider using `_red` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `foreign` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:233:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 233 | let foreign = IpAddress::V6(314159263, 123442); Oct 21 17:43:09.325 INFO kablam! | ^^^^^^^ help: consider using `_foreign` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `some_ip` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:238:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 238 | let some_ip = Some(home); Oct 21 17:43:09.325 INFO kablam! | ^^^^^^^ help: consider using `_some_ip` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `absent_ip` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:240:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 240 | let absent_ip: Option = None; Oct 21 17:43:09.325 INFO kablam! | ^^^^^^^^^ help: consider using `_absent_ip` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `x` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:243:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 243 | let x: i8 = 5; Oct 21 17:43:09.325 INFO kablam! | ^ help: consider using `_x` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `y` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:244:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 244 | let y: Option = Some(5); Oct 21 17:43:09.325 INFO kablam! | ^ help: consider using `_y` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.325 INFO kablam! warning: unused variable: `retcode` Oct 21 17:43:09.325 INFO kablam! --> src/main.rs:259:9 Oct 21 17:43:09.325 INFO kablam! | Oct 21 17:43:09.325 INFO kablam! 259 | let retcode = match error { // match forces us to cover all possible cases Oct 21 17:43:09.325 INFO kablam! | ^^^^^^^ help: consider using `_retcode` instead Oct 21 17:43:09.325 INFO kablam! Oct 21 17:43:09.335 INFO kablam! warning: variable does not need to be mutable Oct 21 17:43:09.335 INFO kablam! --> src/main.rs:139:9 Oct 21 17:43:09.335 INFO kablam! | Oct 21 17:43:09.335 INFO kablam! 139 | let mut s = String::from("hello world"); Oct 21 17:43:09.335 INFO kablam! | ----^ Oct 21 17:43:09.335 INFO kablam! | | Oct 21 17:43:09.335 INFO kablam! | help: remove this `mut` Oct 21 17:43:09.335 INFO kablam! | Oct 21 17:43:09.335 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 21 17:43:09.335 INFO kablam! Oct 21 17:43:09.352 INFO kablam! warning: variant is never constructed: `NetworkError` Oct 21 17:43:09.352 INFO kablam! --> src/main.rs:252:9 Oct 21 17:43:09.352 INFO kablam! | Oct 21 17:43:09.352 INFO kablam! 252 | NetworkError, Oct 21 17:43:09.352 INFO kablam! | ^^^^^^^^^^^^ Oct 21 17:43:09.352 INFO kablam! | Oct 21 17:43:09.352 INFO kablam! = note: #[warn(dead_code)] on by default Oct 21 17:43:09.352 INFO kablam! Oct 21 17:43:09.352 INFO kablam! warning: variant is never constructed: `SerilizationError` Oct 21 17:43:09.352 INFO kablam! --> src/main.rs:253:9 Oct 21 17:43:09.352 INFO kablam! | Oct 21 17:43:09.352 INFO kablam! 253 | SerilizationError(String), Oct 21 17:43:09.352 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 17:43:09.352 INFO kablam! Oct 21 17:43:09.352 INFO kablam! warning: function is never used: `closures` Oct 21 17:43:09.352 INFO kablam! --> src/main.rs:310:1 Oct 21 17:43:09.352 INFO kablam! | Oct 21 17:43:09.352 INFO kablam! 310 | fn closures() { Oct 21 17:43:09.352 INFO kablam! | ^^^^^^^^^^^^^ Oct 21 17:43:09.352 INFO kablam! Oct 21 17:43:09.352 INFO kablam! warning: variable `className` should have a snake case name such as `class_name` Oct 21 17:43:09.352 INFO kablam! --> src/main.rs:264:41 Oct 21 17:43:09.352 INFO kablam! | Oct 21 17:43:09.352 INFO kablam! 264 | RPCCallError::SerilizationError(className) => { Oct 21 17:43:09.352 INFO kablam! | ^^^^^^^^^ Oct 21 17:43:09.352 INFO kablam! | Oct 21 17:43:09.352 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 21 17:43:09.352 INFO kablam! Oct 21 17:43:09.388 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.92s Oct 21 17:43:09.392 INFO kablam! su: No module specific data is present Oct 21 17:43:10.007 INFO running `"docker" "rm" "-f" "8b8df65cb48ad238259d4b1ae53564237ce5c878f754fcedd6e14f3222c09728"` Oct 21 17:43:10.252 INFO blam! 8b8df65cb48ad238259d4b1ae53564237ce5c878f754fcedd6e14f3222c09728