Giter Club home page Giter Club logo

stainless-ffmpeg's People

Contributors

alephalpha avatar bramart avatar marcantoine-arnaud avatar oupen avatar romanelaf avatar sebcreme avatar valnoel avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

stainless-ffmpeg's Issues

"arrays only have std trait implementations for lengths 0..=32"

Hi,

im trying to build my app and getting a lot of "arrays only have std trait implementations for lengths 0..=32" errors from the compiler. I switched to nixos lately, so maybe i have miss configured something. Im using the current version of stainless-ffmpeg (v0.1.1) from crates.

ffmpeg version: 4.2.1
clang version: 7
rust version: rustc 1.40.0-nightly (4a8c5b20c 2019-10-23)

default.nix

with import <nixpkgs> {};

stdenv.mkDerivation {
    name = "audio_conv";
    buildInputs = [pkg-config ffmpeg_4 clang];
    LIBCLANG_PATH="${llvmPackages.libclang}/lib";
}
build log
[nix-shell:~/ws/audio_conv]$ cargo build --release
   Compiling stainless-ffmpeg-sys v4.2.1
error[E0369]: binary operation `==` cannot be applied to type `__mbstate_t__bindgen_ty_1`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:2922:5
     |
2922 |     pub __value: __mbstate_t__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__mbstate_t__bindgen_ty_1`

error[E0369]: binary operation `!=` cannot be applied to type `__mbstate_t__bindgen_ty_1`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:2922:5
     |
2922 |     pub __value: __mbstate_t__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__mbstate_t__bindgen_ty_1`

error[E0277]: the trait bound `__mbstate_t__bindgen_ty_1: std::cmp::Eq` is not satisfied
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:2922:5
     |
2922 |     pub __value: __mbstate_t__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::cmp::Eq` is not implemented for `__mbstate_t__bindgen_ty_1`
     |
     = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `__pthread_cond_s__bindgen_ty_1`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4675:5
     |
4675 |     pub __bindgen_anon_1: __pthread_cond_s__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__pthread_cond_s__bindgen_ty_1`

error[E0369]: binary operation `==` cannot be applied to type `__pthread_cond_s__bindgen_ty_2`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4676:5
     |
4676 |     pub __bindgen_anon_2: __pthread_cond_s__bindgen_ty_2,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__pthread_cond_s__bindgen_ty_2`

error[E0369]: binary operation `!=` cannot be applied to type `__pthread_cond_s__bindgen_ty_1`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4675:5
     |
4675 |     pub __bindgen_anon_1: __pthread_cond_s__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__pthread_cond_s__bindgen_ty_1`

error[E0369]: binary operation `!=` cannot be applied to type `__pthread_cond_s__bindgen_ty_2`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4676:5
     |
4676 |     pub __bindgen_anon_2: __pthread_cond_s__bindgen_ty_2,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__pthread_cond_s__bindgen_ty_2`

error[E0277]: the trait bound `__pthread_cond_s__bindgen_ty_1: std::cmp::Eq` is not satisfied
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4675:5
     |
4675 |     pub __bindgen_anon_1: __pthread_cond_s__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::cmp::Eq` is not implemented for `__pthread_cond_s__bindgen_ty_1`
     |
     = note: required by `std::cmp::AssertParamIsEq`

error[E0277]: the trait bound `__pthread_cond_s__bindgen_ty_2: std::cmp::Eq` is not satisfied
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4676:5
     |
4676 |     pub __bindgen_anon_2: __pthread_cond_s__bindgen_ty_2,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::cmp::Eq` is not implemented for `__pthread_cond_s__bindgen_ty_2`
     |
     = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `AVOption__bindgen_ty_1`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:18031:5
      |
18031 |     pub default_val: AVOption__bindgen_ty_1,
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `AVOption__bindgen_ty_1`

error[E0369]: binary operation `!=` cannot be applied to type `AVOption__bindgen_ty_1`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:18031:5
      |
18031 |     pub default_val: AVOption__bindgen_ty_1,
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `AVOption__bindgen_ty_1`

error[E0369]: binary operation `==` cannot be applied to type `[i8; 1024]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:22042:5
      |
22042 |     pub filename: [libc::c_char; 1024usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 1024]`

error[E0369]: binary operation `!=` cannot be applied to type `[i8; 1024]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:22042:5
      |
22042 |     pub filename: [libc::c_char; 1024usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 1024]`

error[E0277]: arrays only have std trait implementations for lengths 0..=32
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:22042:5
      |
22042 |     pub filename: [libc::c_char; 1024usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[i8; 1024]`
      |
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[i8; 1024]`
      = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `[i8; 61440]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:24860:5
      |
24860 |     pub reserved: [libc::c_char; 61440usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 61440]`

error[E0369]: binary operation `!=` cannot be applied to type `[i8; 61440]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:24860:5
      |
24860 |     pub reserved: [libc::c_char; 61440usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 61440]`

error[E0277]: arrays only have std trait implementations for lengths 0..=32
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:24860:5
      |
24860 |     pub reserved: [libc::c_char; 61440usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[i8; 61440]`
      |
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[i8; 61440]`
      = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `[[u32; 256]; 4]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:26950:5
      |
26950 |     pub s: [[u32; 256usize]; 4usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[[u32; 256]; 4]`

error[E0369]: binary operation `!=` cannot be applied to type `[[u32; 256]; 4]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:26950:5
      |
26950 |     pub s: [[u32; 256usize]; 4usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[[u32; 256]; 4]`

error[E0277]: arrays only have std trait implementations for lengths 0..=32
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:26950:5
      |
26950 |     pub s: [[u32; 256usize]; 4usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[u32; 256]`
      |
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[u32; 256]`
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[[u32; 256]; 4]`
      = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `[i8; 1000]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:27453:5
      |
27453 |     pub reserved_padding: [libc::c_char; 1000usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 1000]`

error[E0369]: binary operation `!=` cannot be applied to type `[i8; 1000]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:27453:5
      |
27453 |     pub reserved_padding: [libc::c_char; 1000usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 1000]`

error[E0277]: arrays only have std trait implementations for lengths 0..=32
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:27453:5
      |
27453 |     pub reserved_padding: [libc::c_char; 1000usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[i8; 1000]`
      |
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[i8; 1000]`
      = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `[u32; 64]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:29105:5
      |
29105 |     pub state: [libc::c_uint; 64usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[u32; 64]`

error[E0369]: binary operation `!=` cannot be applied to type `[u32; 64]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:29105:5
      |
29105 |     pub state: [libc::c_uint; 64usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[u32; 64]`

error[E0277]: arrays only have std trait implementations for lengths 0..=32
     -->[nix-shell:~/ws/audio_conv]$ cargo build --release
   Compiling stainless-ffmpeg-sys v4.2.1
error[E0369]: binary operation `==` cannot be applied to type `__mbstate_t__bindgen_ty_1`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:2922:5
     |
2922 |     pub __value: __mbstate_t__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__mbstate_t__bindgen_ty_1`

error[E0369]: binary operation `!=` cannot be applied to type `__mbstate_t__bindgen_ty_1`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:2922:5
     |
2922 |     pub __value: __mbstate_t__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__mbstate_t__bindgen_ty_1`

error[E0277]: the trait bound `__mbstate_t__bindgen_ty_1: std::cmp::Eq` is not satisfied
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:2922:5
     |
2922 |     pub __value: __mbstate_t__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::cmp::Eq` is not implemented for `__mbstate_t__bindgen_ty_1`
     |
     = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `__pthread_cond_s__bindgen_ty_1`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4675:5
     |
4675 |     pub __bindgen_anon_1: __pthread_cond_s__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__pthread_cond_s__bindgen_ty_1`

error[E0369]: binary operation `==` cannot be applied to type `__pthread_cond_s__bindgen_ty_2`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4676:5
     |
4676 |     pub __bindgen_anon_2: __pthread_cond_s__bindgen_ty_2,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__pthread_cond_s__bindgen_ty_2`

error[E0369]: binary operation `!=` cannot be applied to type `__pthread_cond_s__bindgen_ty_1`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4675:5
     |
4675 |     pub __bindgen_anon_1: __pthread_cond_s__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__pthread_cond_s__bindgen_ty_1`

error[E0369]: binary operation `!=` cannot be applied to type `__pthread_cond_s__bindgen_ty_2`
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4676:5
     |
4676 |     pub __bindgen_anon_2: __pthread_cond_s__bindgen_ty_2,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: an implementation of `std::cmp::PartialEq` might be missing for `__pthread_cond_s__bindgen_ty_2`

error[E0277]: the trait bound `__pthread_cond_s__bindgen_ty_1: std::cmp::Eq` is not satisfied
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4675:5
     |
4675 |     pub __bindgen_anon_1: __pthread_cond_s__bindgen_ty_1,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::cmp::Eq` is not implemented for `__pthread_cond_s__bindgen_ty_1`
     |
     = note: required by `std::cmp::AssertParamIsEq`

error[E0277]: the trait bound `__pthread_cond_s__bindgen_ty_2: std::cmp::Eq` is not satisfied
    --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:4676:5
     |
4676 |     pub __bindgen_anon_2: __pthread_cond_s__bindgen_ty_2,
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::cmp::Eq` is not implemented for `__pthread_cond_s__bindgen_ty_2`
     |
     = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `AVOption__bindgen_ty_1`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:18031:5
      |
18031 |     pub default_val: AVOption__bindgen_ty_1,
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `AVOption__bindgen_ty_1`

error[E0369]: binary operation `!=` cannot be applied to type `AVOption__bindgen_ty_1`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:18031:5
      |
18031 |     pub default_val: AVOption__bindgen_ty_1,
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `AVOption__bindgen_ty_1`

error[E0369]: binary operation `==` cannot be applied to type `[i8; 1024]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:22042:5
      |
22042 |     pub filename: [libc::c_char; 1024usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 1024]`

error[E0369]: binary operation `!=` cannot be applied to type `[i8; 1024]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:22042:5
      |
22042 |     pub filename: [libc::c_char; 1024usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 1024]`

error[E0277]: arrays only have std trait implementations for lengths 0..=32
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:22042:5
      |
22042 |     pub filename: [libc::c_char; 1024usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[i8; 1024]`
      |
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[i8; 1024]`
      = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `[i8; 61440]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:24860:5
      |
24860 |     pub reserved: [libc::c_char; 61440usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 61440]`

error[E0369]: binary operation `!=` cannot be applied to type `[i8; 61440]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:24860:5
      |
24860 |     pub reserved: [libc::c_char; 61440usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 61440]`

error[E0277]: arrays only have std trait implementations for lengths 0..=32
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:24860:5
      |
24860 |     pub reserved: [libc::c_char; 61440usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[i8; 61440]`
      |
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[i8; 61440]`
      = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `[[u32; 256]; 4]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:26950:5
      |
26950 |     pub s: [[u32; 256usize]; 4usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[[u32; 256]; 4]`

error[E0369]: binary operation `!=` cannot be applied to type `[[u32; 256]; 4]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:26950:5
      |
26950 |     pub s: [[u32; 256usize]; 4usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[[u32; 256]; 4]`

error[E0277]: arrays only have std trait implementations for lengths 0..=32
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:26950:5
      |
26950 |     pub s: [[u32; 256usize]; 4usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[u32; 256]`
      |
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[u32; 256]`
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[[u32; 256]; 4]`
      = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `[i8; 1000]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:27453:5
      |
27453 |     pub reserved_padding: [libc::c_char; 1000usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 1000]`

error[E0369]: binary operation `!=` cannot be applied to type `[i8; 1000]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:27453:5
      |
27453 |     pub reserved_padding: [libc::c_char; 1000usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[i8; 1000]`

error[E0277]: arrays only have std trait implementations for lengths 0..=32
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:27453:5
      |
27453 |     pub reserved_padding: [libc::c_char; 1000usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[i8; 1000]`
      |
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[i8; 1000]`
      = note: required by `std::cmp::AssertParamIsEq`

error[E0369]: binary operation `==` cannot be applied to type `[u32; 64]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:29105:5
      |
29105 |     pub state: [libc::c_uint; 64usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[u32; 64]`

error[E0369]: binary operation `!=` cannot be applied to type `[u32; 64]`
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:29105:5
      |
29105 |     pub state: [libc::c_uint; 64usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |
      = note: an implementation of `std::cmp::PartialEq` might be missing for `[u32; 64]`

error[E0277]: arrays only have std trait implementations for lengths 0..=32
     --> /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:29105:5
      |
29105 |     pub state: [libc::c_uint; 64usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[u32; 64]`
      |
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[u32; 64]`
      = note: required by `std::cmp::AssertParamIsEq`

error: aborting due to 26 previous errors

Some errors have detailed explanations: E0277, E0369.
For more information about an error, try `rustc --explain E0277`.
error: could not compile `stainless-ffmpeg-sys`.

To learn more, run the command again with --verbose. /home/thomas/ws/audio_conv/target/release/build/stainless-ffmpeg-sys-6cb2cebdd91547e6/out/bindings.rs:29105:5
      |
29105 |     pub state: [libc::c_uint; 64usize],
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::array::LengthAtMost32` is not implemented for `[u32; 64]`
      |
      = note: required because of the requirements on the impl of `std::cmp::Eq` for `[u32; 64]`
      = note: required by `std::cmp::AssertParamIsEq`

error: aborting due to 26 previous errors

Some errors have detailed explanations: E0277, E0369.
For more information about an error, try `rustc --explain E0277`.
error: could not compile `stainless-ffmpeg-sys`.

To learn more, run the command again with --verbose.

Tags

Hi,

Would it be possible to add tags on release commits, to facilitate the navigation in the code history?

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.