[INFO] fetching crate int-conv 0.1.4... [INFO] checking int-conv-0.1.4 against beta for pr-78714 [INFO] extracting crate int-conv 0.1.4 into /workspace/builds/worker-6/source [INFO] validating manifest of crates.io crate int-conv 0.1.4 on toolchain beta [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta" "read-manifest" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] started tweaking crates.io crate int-conv 0.1.4 [INFO] finished tweaking crates.io crate int-conv 0.1.4 [INFO] tweaked toml for crates.io crate int-conv 0.1.4 written to /workspace/builds/worker-6/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta" "fetch" "--locked" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "rustops/crates-build-env@sha256:d92eaeed33fa75130ca1ee6c8a01d1ffb62bac859dfdfb3450e3e5d1c0146529" "/opt/rustwide/cargo-home/bin/cargo" "+beta" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 3047c81997652e5332dce4709b99db48e9065c3991322a0b0baca3a699259e52 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "3047c81997652e5332dce4709b99db48e9065c3991322a0b0baca3a699259e52", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "3047c81997652e5332dce4709b99db48e9065c3991322a0b0baca3a699259e52", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "3047c81997652e5332dce4709b99db48e9065c3991322a0b0baca3a699259e52", kill_on_drop: false }` [INFO] [stdout] 3047c81997652e5332dce4709b99db48e9065c3991322a0b0baca3a699259e52 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "rustops/crates-build-env@sha256:d92eaeed33fa75130ca1ee6c8a01d1ffb62bac859dfdfb3450e3e5d1c0146529" "/opt/rustwide/cargo-home/bin/cargo" "+beta" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 0b084cdc93d2eda8830a8d751e91db4262936bfabda9a84160a9d19054cd24ab [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "0b084cdc93d2eda8830a8d751e91db4262936bfabda9a84160a9d19054cd24ab", kill_on_drop: false }` [INFO] [stderr] Checking int-conv v0.1.4 (/opt/rustwide/workdir) [INFO] [stdout] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:31:21 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 31 | pub trait IsSigned: Signed {} [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time [INFO] [stdout] | [INFO] [stdout] help: consider further restricting `Self` [INFO] [stdout] | [INFO] [stdout] 31 | pub trait IsSigned: Signed + Sized {} [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:35:23 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 35 | pub trait IsUnsigned: Signed {} [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time [INFO] [stdout] | [INFO] [stdout] help: consider further restricting `Self` [INFO] [stdout] | [INFO] [stdout] 35 | pub trait IsUnsigned: Signed + Sized {} [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:105:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 105 | static_assertions::assert_impl_all! { i8 : Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:106:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 106 | static_assertions::assert_impl_all! { i16 : Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:107:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 107 | static_assertions::assert_impl_all! { i32 : Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:108:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 108 | static_assertions::assert_impl_all! { i64 : Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:109:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 109 | static_assertions::assert_impl_all! { i128 : Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:110:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 110 | static_assertions::assert_impl_all! { isize: Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:111:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 111 | static_assertions::assert_impl_all! { u8 : Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:112:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 112 | static_assertions::assert_impl_all! { u16 : Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:113:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 113 | static_assertions::assert_impl_all! { u32 : Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:114:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 114 | static_assertions::assert_impl_all! { u64 : Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:115:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 115 | static_assertions::assert_impl_all! { u128 : Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:116:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `Signed` [INFO] [stdout] ... [INFO] [stdout] 116 | static_assertions::assert_impl_all! { usize: Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 14 previous errors [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0277`. [INFO] [stdout] [INFO] [stderr] error: could not compile `int-conv` [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stdout] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:31:21 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 31 | pub trait IsSigned: Signed {} [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time [INFO] [stdout] | [INFO] [stdout] help: consider further restricting `Self` [INFO] [stdout] | [INFO] [stdout] 31 | pub trait IsSigned: Signed + Sized {} [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:35:23 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 35 | pub trait IsUnsigned: Signed {} [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time [INFO] [stdout] | [INFO] [stdout] help: consider further restricting `Self` [INFO] [stdout] | [INFO] [stdout] 35 | pub trait IsUnsigned: Signed + Sized {} [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:105:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 105 | static_assertions::assert_impl_all! { i8 : Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:106:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 106 | static_assertions::assert_impl_all! { i16 : Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:107:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 107 | static_assertions::assert_impl_all! { i32 : Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:108:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 108 | static_assertions::assert_impl_all! { i64 : Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:109:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 109 | static_assertions::assert_impl_all! { i128 : Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:110:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] 12 | /// Signed variant of this type [INFO] [stdout] 13 | type Signed; [INFO] [stdout] | ------------ required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 110 | static_assertions::assert_impl_all! { isize: Signed, IsSigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:111:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 111 | static_assertions::assert_impl_all! { u8 : Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:112:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 112 | static_assertions::assert_impl_all! { u16 : Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:113:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 113 | static_assertions::assert_impl_all! { u32 : Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:114:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 114 | static_assertions::assert_impl_all! { u64 : Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:115:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 115 | static_assertions::assert_impl_all! { u128 : Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0277]: the size for values of type `T` cannot be known at compilation time [INFO] [stdout] --> src/sign.rs:116:1 [INFO] [stdout] | [INFO] [stdout] 11 | pub trait Signed { [INFO] [stdout] | ------ required by a bound in this [INFO] [stdout] ... [INFO] [stdout] 16 | type Unsigned; [INFO] [stdout] | -------------- required by this bound in `sign::Signed` [INFO] [stdout] ... [INFO] [stdout] 116 | static_assertions::assert_impl_all! { usize: Signed, IsUnsigned } [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | doesn't have a size known at compile-time [INFO] [stdout] | this type parameter needs to be `Sized` [INFO] [stdout] | [INFO] [stdout] = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 14 previous errors [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0277`. [INFO] [stdout] [INFO] [stderr] error: build failed [INFO] running `Command { std: "docker" "inspect" "0b084cdc93d2eda8830a8d751e91db4262936bfabda9a84160a9d19054cd24ab", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "0b084cdc93d2eda8830a8d751e91db4262936bfabda9a84160a9d19054cd24ab", kill_on_drop: false }` [INFO] [stdout] 0b084cdc93d2eda8830a8d751e91db4262936bfabda9a84160a9d19054cd24ab