[INFO] updating cached repository sharpjs/cfda [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/sharpjs/cfda [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/sharpjs/cfda" "work/ex/clippy-test-run/sources/stable/gh/sharpjs/cfda"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable/gh/sharpjs/cfda'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/sharpjs/cfda" "work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/sharpjs/cfda"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/sharpjs/cfda'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 72e3343b54a6fcc392dcf4da1b3a5539d1d12538 [INFO] sha for GitHub repo sharpjs/cfda: 72e3343b54a6fcc392dcf4da1b3a5539d1d12538 [INFO] validating manifest of sharpjs/cfda on toolchain stable [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of sharpjs/cfda on toolchain stable+rustflags=-Dclippy::into_iter_on_array [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing sharpjs/cfda [INFO] finished frobbing sharpjs/cfda [INFO] frobbed toml for sharpjs/cfda written to work/ex/clippy-test-run/sources/stable/gh/sharpjs/cfda/Cargo.toml [INFO] started frobbing sharpjs/cfda [INFO] finished frobbing sharpjs/cfda [INFO] frobbed toml for sharpjs/cfda written to work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/sharpjs/cfda/Cargo.toml [INFO] crate sharpjs/cfda has a lockfile. skipping [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] linting sharpjs/cfda against stable for clippy-test-run [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/clippy-test-run/worker-1/stable:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/clippy-test-run/sources/stable/gh/sharpjs/cfda:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+stable" "clippy" "--frozen" "--all" "--all-targets"` [INFO] [stdout] 01ca60dbc3a549bca06060f5b968159410e3e2e8c04907f196f0d28ebc4d2a54 [INFO] running `"docker" "start" "-a" "01ca60dbc3a549bca06060f5b968159410e3e2e8c04907f196f0d28ebc4d2a54"` [INFO] [stderr] Checking cfda v0.0.0 (/opt/crater/workdir) [INFO] [stderr] warning: casting u16 to u32 may become silently lossy if types change [INFO] [stderr] --> src/arch/cf/decode_context.rs:30:27 [INFO] [stderr] | [INFO] [stderr] 30 | Some(Self { bits: word as u32, rest }) [INFO] [stderr] | ^^^^^^^^^^^ help: try: `u32::from(word)` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::cast_lossless)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to u32 may become silently lossy if types change [INFO] [stderr] --> src/arch/cf/decode_context.rs:35:39 [INFO] [stderr] | [INFO] [stderr] 35 | Some(Self { bits: self.bits | (word as u32) << 16, rest }) [INFO] [stderr] | ^^^^^^^^^^^^^ help: try: `u32::from(word)` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: digits grouped inconsistently by underscores [INFO] [stderr] --> src/num/field.rs:61:20 [INFO] [stderr] | [INFO] [stderr] 61 | let word = 0b_111111_101_1111111_u16; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1110_1111_1111_u16` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::inconsistent_digit_grouping)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_digit_grouping [INFO] [stderr] [INFO] [stderr] warning: digits grouped inconsistently by underscores [INFO] [stderr] --> src/num/field.rs:71:20 [INFO] [stderr] | [INFO] [stderr] 71 | let word = 0b_000000_000_0000000_u16; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b0000_0000_0000_0000_u16` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_digit_grouping [INFO] [stderr] [INFO] [stderr] warning: digits grouped inconsistently by underscores [INFO] [stderr] --> src/num/field.rs:74:20 [INFO] [stderr] | [INFO] [stderr] 74 | let ret = 0b_000000_101_0000000_u16; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b0000_0010_1000_0000_u16` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_digit_grouping [INFO] [stderr] [INFO] [stderr] warning: transmute from a `u32` to a `f32` [INFO] [stderr] --> src/mem/byte_order.rs:86:26 [INFO] [stderr] | [INFO] [stderr] 86 | unsafe { transmute(i) } [INFO] [stderr] | ^^^^^^^^^^^^ help: consider using: `f32::from_bits(i)` [INFO] [stderr] ... [INFO] [stderr] 102 | impl_endian_float! { f32:u32, f64:u64 } [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::transmute_int_to_float)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float [INFO] [stderr] [INFO] [stderr] warning: transmute from a `u32` to a `f32` [INFO] [stderr] --> src/mem/byte_order.rs:94:26 [INFO] [stderr] | [INFO] [stderr] 94 | unsafe { transmute(i) } [INFO] [stderr] | ^^^^^^^^^^^^ help: consider using: `f32::from_bits(i)` [INFO] [stderr] ... [INFO] [stderr] 102 | impl_endian_float! { f32:u32, f64:u64 } [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float [INFO] [stderr] [INFO] [stderr] warning: transmute from a `u64` to a `f64` [INFO] [stderr] --> src/mem/byte_order.rs:86:26 [INFO] [stderr] | [INFO] [stderr] 86 | unsafe { transmute(i) } [INFO] [stderr] | ^^^^^^^^^^^^ help: consider using: `f64::from_bits(i)` [INFO] [stderr] ... [INFO] [stderr] 102 | impl_endian_float! { f32:u32, f64:u64 } [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float [INFO] [stderr] [INFO] [stderr] warning: transmute from a `u64` to a `f64` [INFO] [stderr] --> src/mem/byte_order.rs:94:26 [INFO] [stderr] | [INFO] [stderr] 94 | unsafe { transmute(i) } [INFO] [stderr] | ^^^^^^^^^^^^ help: consider using: `f64::from_bits(i)` [INFO] [stderr] ... [INFO] [stderr] 102 | impl_endian_float! { f32:u32, f64:u64 } [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float [INFO] [stderr] [INFO] [stderr] warning: casting u8 to u16 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u16::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to u32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to u64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to u128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to i16 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i16::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to i32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to u32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to u64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to u128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to i32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u32 to u64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u32 to u128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u32 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u32 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u64 to u128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u64 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i8 to i16 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i16::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i8 to i32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i8 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i8 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i16 to i32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i16 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i16 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i32 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i32 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i64 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to u32 may become silently lossy if types change [INFO] [stderr] --> src/arch/cf/decode_context.rs:30:27 [INFO] [stderr] | [INFO] [stderr] 30 | Some(Self { bits: word as u32, rest }) [INFO] [stderr] | ^^^^^^^^^^^ help: try: `u32::from(word)` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::cast_lossless)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to u32 may become silently lossy if types change [INFO] [stderr] --> src/arch/cf/decode_context.rs:35:39 [INFO] [stderr] | [INFO] [stderr] 35 | Some(Self { bits: self.bits | (word as u32) << 16, rest }) [INFO] [stderr] | ^^^^^^^^^^^^^ help: try: `u32::from(word)` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: transmute from a `u32` to a `f32` [INFO] [stderr] --> src/mem/byte_order.rs:86:26 [INFO] [stderr] | [INFO] [stderr] 86 | unsafe { transmute(i) } [INFO] [stderr] | ^^^^^^^^^^^^ help: consider using: `f32::from_bits(i)` [INFO] [stderr] ... [INFO] [stderr] 102 | impl_endian_float! { f32:u32, f64:u64 } [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::transmute_int_to_float)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float [INFO] [stderr] [INFO] [stderr] warning: transmute from a `u32` to a `f32` [INFO] [stderr] --> src/mem/byte_order.rs:94:26 [INFO] [stderr] | [INFO] [stderr] 94 | unsafe { transmute(i) } [INFO] [stderr] | ^^^^^^^^^^^^ help: consider using: `f32::from_bits(i)` [INFO] [stderr] ... [INFO] [stderr] 102 | impl_endian_float! { f32:u32, f64:u64 } [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float [INFO] [stderr] [INFO] [stderr] warning: transmute from a `u64` to a `f64` [INFO] [stderr] --> src/mem/byte_order.rs:86:26 [INFO] [stderr] | [INFO] [stderr] 86 | unsafe { transmute(i) } [INFO] [stderr] | ^^^^^^^^^^^^ help: consider using: `f64::from_bits(i)` [INFO] [stderr] ... [INFO] [stderr] 102 | impl_endian_float! { f32:u32, f64:u64 } [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float [INFO] [stderr] [INFO] [stderr] warning: transmute from a `u64` to a `f64` [INFO] [stderr] --> src/mem/byte_order.rs:94:26 [INFO] [stderr] | [INFO] [stderr] 94 | unsafe { transmute(i) } [INFO] [stderr] | ^^^^^^^^^^^^ help: consider using: `f64::from_bits(i)` [INFO] [stderr] ... [INFO] [stderr] 102 | impl_endian_float! { f32:u32, f64:u64 } [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#transmute_int_to_float [INFO] [stderr] [INFO] [stderr] warning: casting u8 to u16 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u16::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to u32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to u64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to u128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to i16 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i16::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to i32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u8 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to u32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to u64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to u128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to i32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u16 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u32 to u64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u32 to u128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u32 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u32 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u64 to u128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `u128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting u64 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i8 to i16 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i16::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i8 to i32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i8 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i8 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i16 to i32 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i32::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i16 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i16 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i32 to i64 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i64::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i32 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] warning: casting i64 to i128 may become silently lossy if types change [INFO] [stderr] --> src/num/cast.rs:33:37 [INFO] [stderr] | [INFO] [stderr] 33 | fn cast(self) -> $dst { self as $dst } [INFO] [stderr] | ^^^^ help: try: `i128::from(self)` [INFO] [stderr] ... [INFO] [stderr] 38 | / impl_cast! { [INFO] [stderr] 39 | | u8 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 40 | | u16 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 41 | | u32 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] ... | [INFO] [stderr] 49 | | i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128; [INFO] [stderr] 50 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.00s [INFO] running `"docker" "inspect" "01ca60dbc3a549bca06060f5b968159410e3e2e8c04907f196f0d28ebc4d2a54"` [INFO] running `"docker" "rm" "-f" "01ca60dbc3a549bca06060f5b968159410e3e2e8c04907f196f0d28ebc4d2a54"` [INFO] [stdout] 01ca60dbc3a549bca06060f5b968159410e3e2e8c04907f196f0d28ebc4d2a54