[INFO] cloning repository https://github.com/vchekan/rust-parquet [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/vchekan/rust-parquet" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fvchekan%2Frust-parquet"` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fvchekan%2Frust-parquet'... [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 60041f1673cbc6bf352220b612ff3f9c102567a1 [INFO] testing vchekan/rust-parquet against beta-2020-06-03 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fvchekan%2Frust-parquet" "/workspace/builds/worker-1/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-1/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/vchekan/rust-parquet on toolchain beta-2020-06-03 [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/vchekan/rust-parquet [INFO] removed path dependency thrift from git repo https://github.com/vchekan/rust-parquet [INFO] finished tweaking git repo https://github.com/vchekan/rust-parquet [INFO] tweaked toml for git repo https://github.com/vchekan/rust-parquet written to /workspace/builds/worker-1/source/Cargo.toml [INFO] crate git repo https://github.com/vchekan/rust-parquet already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] warning: dependency (thrift) specified without providing a local path, Git repository, or version to use. This will be considered an error in future versions [INFO] [stderr] Updating crates.io index [INFO] [stderr] error: the lock file /workspace/builds/worker-1/source/Cargo.lock needs to be updated but --locked was passed to prevent this [INFO] [stderr] If you want to try to generate the lock file without accessing the network, use the --offline flag. [INFO] the lockfile is outdated, regenerating it [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] warning: dependency (thrift) specified without providing a local path, Git repository, or version to use. This will be considered an error in future versions [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2020-06-03" "build" "--frozen"` [INFO] [stdout] 9a98b0a7df2fcf1ae29034e3cd723f9e3c27961ee29ad7842670c161e2c5b717 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `"docker" "start" "-a" "9a98b0a7df2fcf1ae29034e3cd723f9e3c27961ee29ad7842670c161e2c5b717"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] warning: dependency (thrift) specified without providing a local path, Git repository, or version to use. This will be considered an error in future versions [INFO] [stderr] Compiling integer-encoding v1.1.5 [INFO] [stderr] Compiling try_from v0.2.2 [INFO] [stderr] Compiling ordered-float v1.0.2 [INFO] [stderr] Compiling ordered-float v0.5.2 [INFO] [stderr] Compiling snap v0.2.5 [INFO] [stderr] Compiling threadpool v1.8.1 [INFO] [stderr] Compiling thrift v0.13.0 [INFO] [stderr] Compiling rust-parquet v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: variant `BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:45:3 [INFO] [stderr] | [INFO] [stderr] 45 | BYTE_ARRAY = 6, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `ByteArray` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_camel_case_types)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variant `FIXED_LEN_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:46:3 [INFO] [stderr] | [INFO] [stderr] 46 | FIXED_LEN_BYTE_ARRAY = 7, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `FixedLenByteArray` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:50:52 [INFO] [stderr] | [INFO] [stderr] 50 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:53:45 [INFO] [stderr] | [INFO] [stderr] 53 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `MAP_KEY_VALUE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:93:3 [INFO] [stderr] | [INFO] [stderr] 93 | MAP_KEY_VALUE = 2, [INFO] [stderr] | ^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `MapKeyValue` [INFO] [stderr] [INFO] [stderr] warning: variant `TIME_MILLIS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:121:3 [INFO] [stderr] | [INFO] [stderr] 121 | TIME_MILLIS = 7, [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimeMillis` [INFO] [stderr] [INFO] [stderr] warning: variant `TIME_MICROS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:126:3 [INFO] [stderr] | [INFO] [stderr] 126 | TIME_MICROS = 8, [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimeMicros` [INFO] [stderr] [INFO] [stderr] warning: variant `TIMESTAMP_MILLIS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:131:3 [INFO] [stderr] | [INFO] [stderr] 131 | TIMESTAMP_MILLIS = 9, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimestampMillis` [INFO] [stderr] [INFO] [stderr] warning: variant `TIMESTAMP_MICROS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:136:3 [INFO] [stderr] | [INFO] [stderr] 136 | TIMESTAMP_MICROS = 10, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimestampMicros` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_8` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:144:3 [INFO] [stderr] | [INFO] [stderr] 144 | UINT_8 = 11, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Uint8` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_16` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:145:3 [INFO] [stderr] | [INFO] [stderr] 145 | UINT_16 = 12, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint16` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_32` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:146:3 [INFO] [stderr] | [INFO] [stderr] 146 | UINT_32 = 13, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint32` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_64` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:147:3 [INFO] [stderr] | [INFO] [stderr] 147 | UINT_64 = 14, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint64` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_8` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:155:3 [INFO] [stderr] | [INFO] [stderr] 155 | INT_8 = 15, [INFO] [stderr] | ^^^^^ help: convert the identifier to upper camel case: `Int8` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_16` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:156:3 [INFO] [stderr] | [INFO] [stderr] 156 | INT_16 = 16, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int16` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_32` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:157:3 [INFO] [stderr] | [INFO] [stderr] 157 | INT_32 = 17, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int32` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_64` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:158:3 [INFO] [stderr] | [INFO] [stderr] 158 | INT_64 = 18, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int64` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:181:52 [INFO] [stderr] | [INFO] [stderr] 181 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:184:45 [INFO] [stderr] | [INFO] [stderr] 184 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:240:52 [INFO] [stderr] | [INFO] [stderr] 240 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:243:45 [INFO] [stderr] | [INFO] [stderr] 243 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `PLAIN_DICTIONARY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:286:3 [INFO] [stderr] | [INFO] [stderr] 286 | PLAIN_DICTIONARY = 2, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `PlainDictionary` [INFO] [stderr] [INFO] [stderr] warning: variant `BIT_PACKED` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:292:3 [INFO] [stderr] | [INFO] [stderr] 292 | BIT_PACKED = 4, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `BitPacked` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_BINARY_PACKED` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:295:3 [INFO] [stderr] | [INFO] [stderr] 295 | DELTA_BINARY_PACKED = 5, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaBinaryPacked` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_LENGTH_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:298:3 [INFO] [stderr] | [INFO] [stderr] 298 | DELTA_LENGTH_BYTE_ARRAY = 6, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaLengthByteArray` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:301:3 [INFO] [stderr] | [INFO] [stderr] 301 | DELTA_BYTE_ARRAY = 7, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaByteArray` [INFO] [stderr] [INFO] [stderr] warning: variant `RLE_DICTIONARY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:303:3 [INFO] [stderr] | [INFO] [stderr] 303 | RLE_DICTIONARY = 8, [INFO] [stderr] | ^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `RleDictionary` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:307:52 [INFO] [stderr] | [INFO] [stderr] 307 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:310:45 [INFO] [stderr] | [INFO] [stderr] 310 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:358:52 [INFO] [stderr] | [INFO] [stderr] 358 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:361:45 [INFO] [stderr] | [INFO] [stderr] 361 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `DATA_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:392:3 [INFO] [stderr] | [INFO] [stderr] 392 | DATA_PAGE = 0, [INFO] [stderr] | ^^^^^^^^^ help: convert the identifier to upper camel case: `DataPage` [INFO] [stderr] [INFO] [stderr] warning: variant `INDEX_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:393:3 [INFO] [stderr] | [INFO] [stderr] 393 | INDEX_PAGE = 1, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `IndexPage` [INFO] [stderr] [INFO] [stderr] warning: variant `DICTIONARY_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:394:3 [INFO] [stderr] | [INFO] [stderr] 394 | DICTIONARY_PAGE = 2, [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DictionaryPage` [INFO] [stderr] [INFO] [stderr] warning: variant `DATA_PAGE_V2` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:395:3 [INFO] [stderr] | [INFO] [stderr] 395 | DATA_PAGE_V2 = 3, [INFO] [stderr] | ^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DataPageV2` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:399:52 [INFO] [stderr] | [INFO] [stderr] 399 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:402:45 [INFO] [stderr] | [INFO] [stderr] 402 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:438:52 [INFO] [stderr] | [INFO] [stderr] 438 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:441:45 [INFO] [stderr] | [INFO] [stderr] 441 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:510:45 [INFO] [stderr] | [INFO] [stderr] 510 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:566:52 [INFO] [stderr] | [INFO] [stderr] 566 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:648:45 [INFO] [stderr] | [INFO] [stderr] 648 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:667:52 [INFO] [stderr] | [INFO] [stderr] 667 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:693:45 [INFO] [stderr] | [INFO] [stderr] 693 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:712:52 [INFO] [stderr] | [INFO] [stderr] 712 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:738:45 [INFO] [stderr] | [INFO] [stderr] 738 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:757:52 [INFO] [stderr] | [INFO] [stderr] 757 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:783:45 [INFO] [stderr] | [INFO] [stderr] 783 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:802:52 [INFO] [stderr] | [INFO] [stderr] 802 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:828:45 [INFO] [stderr] | [INFO] [stderr] 828 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:847:52 [INFO] [stderr] | [INFO] [stderr] 847 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:873:45 [INFO] [stderr] | [INFO] [stderr] 873 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:892:52 [INFO] [stderr] | [INFO] [stderr] 892 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:923:45 [INFO] [stderr] | [INFO] [stderr] 923 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:942:52 [INFO] [stderr] | [INFO] [stderr] 942 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:979:45 [INFO] [stderr] | [INFO] [stderr] 979 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1013:52 [INFO] [stderr] | [INFO] [stderr] 1013 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1040:45 [INFO] [stderr] | [INFO] [stderr] 1040 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1059:52 [INFO] [stderr] | [INFO] [stderr] 1059 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1085:45 [INFO] [stderr] | [INFO] [stderr] 1085 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1104:52 [INFO] [stderr] | [INFO] [stderr] 1104 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1129:45 [INFO] [stderr] | [INFO] [stderr] 1129 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1184:52 [INFO] [stderr] | [INFO] [stderr] 1184 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1224:45 [INFO] [stderr] | [INFO] [stderr] 1224 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1258:52 [INFO] [stderr] | [INFO] [stderr] 1258 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1292:45 [INFO] [stderr] | [INFO] [stderr] 1292 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1326:52 [INFO] [stderr] | [INFO] [stderr] 1326 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1362:45 [INFO] [stderr] | [INFO] [stderr] 1362 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1396:52 [INFO] [stderr] | [INFO] [stderr] 1396 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1425:45 [INFO] [stderr] | [INFO] [stderr] 1425 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1444:52 [INFO] [stderr] | [INFO] [stderr] 1444 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1473:45 [INFO] [stderr] | [INFO] [stderr] 1473 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1492:52 [INFO] [stderr] | [INFO] [stderr] 1492 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1527:45 [INFO] [stderr] | [INFO] [stderr] 1527 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1652:52 [INFO] [stderr] | [INFO] [stderr] 1652 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1781:45 [INFO] [stderr] | [INFO] [stderr] 1781 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1862:52 [INFO] [stderr] | [INFO] [stderr] 1862 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1974:45 [INFO] [stderr] | [INFO] [stderr] 1974 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2028:52 [INFO] [stderr] | [INFO] [stderr] 2028 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2068:45 [INFO] [stderr] | [INFO] [stderr] 2068 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2087:52 [INFO] [stderr] | [INFO] [stderr] 2087 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2124:45 [INFO] [stderr] | [INFO] [stderr] 2124 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2164:52 [INFO] [stderr] | [INFO] [stderr] 2164 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2232:45 [INFO] [stderr] | [INFO] [stderr] 2232 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2306:52 [INFO] [stderr] | [INFO] [stderr] 2306 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2383:45 [INFO] [stderr] | [INFO] [stderr] 2383 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2454:52 [INFO] [stderr] | [INFO] [stderr] 2454 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2529:45 [INFO] [stderr] | [INFO] [stderr] 2529 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2562:52 [INFO] [stderr] | [INFO] [stderr] 2562 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2605:45 [INFO] [stderr] | [INFO] [stderr] 2605 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2646:52 [INFO] [stderr] | [INFO] [stderr] 2646 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2686:45 [INFO] [stderr] | [INFO] [stderr] 2686 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2727:52 [INFO] [stderr] | [INFO] [stderr] 2727 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2800:45 [INFO] [stderr] | [INFO] [stderr] 2800 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2930:52 [INFO] [stderr] | [INFO] [stderr] 2930 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3057:45 [INFO] [stderr] | [INFO] [stderr] 3057 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3120:52 [INFO] [stderr] | [INFO] [stderr] 3120 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3207:45 [INFO] [stderr] | [INFO] [stderr] 3207 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3266:52 [INFO] [stderr] | [INFO] [stderr] 3266 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3312:45 [INFO] [stderr] | [INFO] [stderr] 3312 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3331:52 [INFO] [stderr] | [INFO] [stderr] 3331 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3355:45 [INFO] [stderr] | [INFO] [stderr] 3355 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3403:52 [INFO] [stderr] | [INFO] [stderr] 3403 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3442:45 [INFO] [stderr] | [INFO] [stderr] 3442 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3483:52 [INFO] [stderr] | [INFO] [stderr] 3483 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3517:45 [INFO] [stderr] | [INFO] [stderr] 3517 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3550:52 [INFO] [stderr] | [INFO] [stderr] 3550 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3607:45 [INFO] [stderr] | [INFO] [stderr] 3607 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3685:52 [INFO] [stderr] | [INFO] [stderr] 3685 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3781:45 [INFO] [stderr] | [INFO] [stderr] 3781 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3871:52 [INFO] [stderr] | [INFO] [stderr] 3871 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:438:10 [INFO] [stderr] | [INFO] [stderr] 438 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:441:10 [INFO] [stderr] | [INFO] [stderr] 441 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:690:10 [INFO] [stderr] | [INFO] [stderr] 690 | pub fn new() -> UUIDType { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:693:10 [INFO] [stderr] | [INFO] [stderr] 693 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:712:10 [INFO] [stderr] | [INFO] [stderr] 712 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:1965:10 [INFO] [stderr] | [INFO] [stderr] 1965 | pub fn new(num_values: i32, encoding: Encoding, definition_level_encoding: Encoding, repetition_level_encoding: Encoding, statistics: F5) -> DataPageHeader where F5: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:1974:10 [INFO] [stderr] | [INFO] [stderr] 1974 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2028:10 [INFO] [stderr] | [INFO] [stderr] 2028 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2065:10 [INFO] [stderr] | [INFO] [stderr] 2065 | pub fn new() -> IndexPageHeader { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2068:10 [INFO] [stderr] | [INFO] [stderr] 2068 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2087:10 [INFO] [stderr] | [INFO] [stderr] 2087 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2117:10 [INFO] [stderr] | [INFO] [stderr] 2117 | pub fn new(num_values: i32, encoding: Encoding, is_sorted: F3) -> DictionaryPageHeader where F3: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2124:10 [INFO] [stderr] | [INFO] [stderr] 2124 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2164:10 [INFO] [stderr] | [INFO] [stderr] 2164 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2220:10 [INFO] [stderr] | [INFO] [stderr] 2220 | pub fn new(num_values: i32, num_nulls: i32, num_rows: i32, encoding: Encoding, definition_levels_byte_length: i32, repetition_levels_byte_length: i32, is_compressed: F7, statistics: F8) -> DataPageHeaderV2 where F7: Into>, F8: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2232:10 [INFO] [stderr] | [INFO] [stderr] 2232 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2306:10 [INFO] [stderr] | [INFO] [stderr] 2306 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2371:10 [INFO] [stderr] | [INFO] [stderr] 2371 | pub fn new(type_: PageType, uncompressed_page_size: i32, compressed_page_size: i32, crc: F4, data_page_header: F5, index_page_header: F6, dictionary_page_header: F7, data_page_header_v2: F8) -> PageHeader where F4: Into>, F5: Into>, F6: Into>, F7: Into>, F8: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2383:10 [INFO] [stderr] | [INFO] [stderr] 2383 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2454:10 [INFO] [stderr] | [INFO] [stderr] 2454 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3435:10 [INFO] [stderr] | [INFO] [stderr] 3435 | pub fn new(offset: i64, compressed_page_size: i32, first_row_index: i64) -> PageLocation { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3442:10 [INFO] [stderr] | [INFO] [stderr] 3442 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3483:10 [INFO] [stderr] | [INFO] [stderr] 3483 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3512:10 [INFO] [stderr] | [INFO] [stderr] 3512 | pub fn new(page_locations: Vec) -> OffsetIndex { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3517:10 [INFO] [stderr] | [INFO] [stderr] 3517 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3550:10 [INFO] [stderr] | [INFO] [stderr] 3550 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3598:10 [INFO] [stderr] | [INFO] [stderr] 3598 | pub fn new(null_pages: Vec, min_values: Vec>, max_values: Vec>, boundary_order: BoundaryOrder, null_counts: F5) -> ColumnIndex where F5: Into>> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3607:10 [INFO] [stderr] | [INFO] [stderr] 3607 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3685:10 [INFO] [stderr] | [INFO] [stderr] 3685 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/encodings.rs:13:12 [INFO] [stderr] | [INFO] [stderr] 13 | pub fn new(max_level: u32, data: &'a [u8]) -> Result { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never read: `ptr` [INFO] [stderr] --> src/encodings.rs:53:5 [INFO] [stderr] | [INFO] [stderr] 53 | ptr: u32, [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: struct is never constructed: `BitPackingReader` [INFO] [stderr] --> src/encodings.rs:118:12 [INFO] [stderr] | [INFO] [stderr] 118 | pub struct BitPackingReader<'a> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/encodings.rs:124:8 [INFO] [stderr] | [INFO] [stderr] 124 | fn new(data: &'a [u8]) -> Result { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: function is never used: `bit_width` [INFO] [stderr] --> src/encodings.rs:141:4 [INFO] [stderr] | [INFO] [stderr] 141 | fn bit_width(max_int: u32) -> u32 { [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: function is never used: `byte_width` [INFO] [stderr] --> src/encodings.rs:144:4 [INFO] [stderr] | [INFO] [stderr] 144 | fn byte_width(bit_width: u32) -> u32 { [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: struct is never constructed: `ColumnPagesIter` [INFO] [stderr] --> src/lib.rs:65:8 [INFO] [stderr] | [INFO] [stderr] 65 | struct ColumnPagesIter<'a> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/lib.rs:72:12 [INFO] [stderr] | [INFO] [stderr] 72 | pub fn new(file: &'a mut BufReader, file_meta: &'a FileMetaData, column: &str) -> ColumnPagesIter<'a> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_page_header` [INFO] [stderr] --> src/lib.rs:86:8 [INFO] [stderr] | [INFO] [stderr] 86 | fn read_page_header(&mut self, file: &mut Take) -> PageHeader { [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `iter` [INFO] [stderr] --> src/lib.rs:96:8 [INFO] [stderr] | [INFO] [stderr] 96 | fn iter(&'a mut self) -> impl 'a + Iterator { [INFO] [stderr] | ^^^^ [INFO] [stderr] [INFO] [stderr] warning: 150 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 9.41s [INFO] running `"docker" "inspect" "9a98b0a7df2fcf1ae29034e3cd723f9e3c27961ee29ad7842670c161e2c5b717"` [INFO] running `"docker" "rm" "-f" "9a98b0a7df2fcf1ae29034e3cd723f9e3c27961ee29ad7842670c161e2c5b717"` [INFO] [stdout] 9a98b0a7df2fcf1ae29034e3cd723f9e3c27961ee29ad7842670c161e2c5b717 [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2020-06-03" "test" "--frozen" "--no-run"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] f5274e41b6535f1d7ae79634ee4be28ce0987e814fa576c023df2aa644ae9c03 [INFO] running `"docker" "start" "-a" "f5274e41b6535f1d7ae79634ee4be28ce0987e814fa576c023df2aa644ae9c03"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] warning: dependency (thrift) specified without providing a local path, Git repository, or version to use. This will be considered an error in future versions [INFO] [stderr] Compiling rust-parquet v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: variant `BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:45:3 [INFO] [stderr] | [INFO] [stderr] 45 | BYTE_ARRAY = 6, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `ByteArray` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_camel_case_types)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variant `FIXED_LEN_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:46:3 [INFO] [stderr] | [INFO] [stderr] 46 | FIXED_LEN_BYTE_ARRAY = 7, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `FixedLenByteArray` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:50:52 [INFO] [stderr] | [INFO] [stderr] 50 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:53:45 [INFO] [stderr] | [INFO] [stderr] 53 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `MAP_KEY_VALUE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:93:3 [INFO] [stderr] | [INFO] [stderr] 93 | MAP_KEY_VALUE = 2, [INFO] [stderr] | ^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `MapKeyValue` [INFO] [stderr] [INFO] [stderr] warning: variant `TIME_MILLIS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:121:3 [INFO] [stderr] | [INFO] [stderr] 121 | TIME_MILLIS = 7, [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimeMillis` [INFO] [stderr] [INFO] [stderr] warning: variant `TIME_MICROS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:126:3 [INFO] [stderr] | [INFO] [stderr] 126 | TIME_MICROS = 8, [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimeMicros` [INFO] [stderr] [INFO] [stderr] warning: variant `TIMESTAMP_MILLIS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:131:3 [INFO] [stderr] | [INFO] [stderr] 131 | TIMESTAMP_MILLIS = 9, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimestampMillis` [INFO] [stderr] [INFO] [stderr] warning: variant `TIMESTAMP_MICROS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:136:3 [INFO] [stderr] | [INFO] [stderr] 136 | TIMESTAMP_MICROS = 10, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimestampMicros` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_8` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:144:3 [INFO] [stderr] | [INFO] [stderr] 144 | UINT_8 = 11, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Uint8` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_16` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:145:3 [INFO] [stderr] | [INFO] [stderr] 145 | UINT_16 = 12, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint16` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_32` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:146:3 [INFO] [stderr] | [INFO] [stderr] 146 | UINT_32 = 13, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint32` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_64` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:147:3 [INFO] [stderr] | [INFO] [stderr] 147 | UINT_64 = 14, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint64` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_8` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:155:3 [INFO] [stderr] | [INFO] [stderr] 155 | INT_8 = 15, [INFO] [stderr] | ^^^^^ help: convert the identifier to upper camel case: `Int8` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_16` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:156:3 [INFO] [stderr] | [INFO] [stderr] 156 | INT_16 = 16, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int16` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_32` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:157:3 [INFO] [stderr] | [INFO] [stderr] 157 | INT_32 = 17, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int32` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_64` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:158:3 [INFO] [stderr] | [INFO] [stderr] 158 | INT_64 = 18, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int64` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:181:52 [INFO] [stderr] | [INFO] [stderr] 181 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:184:45 [INFO] [stderr] | [INFO] [stderr] 184 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:240:52 [INFO] [stderr] | [INFO] [stderr] 240 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:243:45 [INFO] [stderr] | [INFO] [stderr] 243 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `PLAIN_DICTIONARY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:286:3 [INFO] [stderr] | [INFO] [stderr] 286 | PLAIN_DICTIONARY = 2, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `PlainDictionary` [INFO] [stderr] [INFO] [stderr] warning: variant `BIT_PACKED` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:292:3 [INFO] [stderr] | [INFO] [stderr] 292 | BIT_PACKED = 4, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `BitPacked` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_BINARY_PACKED` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:295:3 [INFO] [stderr] | [INFO] [stderr] 295 | DELTA_BINARY_PACKED = 5, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaBinaryPacked` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_LENGTH_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:298:3 [INFO] [stderr] | [INFO] [stderr] 298 | DELTA_LENGTH_BYTE_ARRAY = 6, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaLengthByteArray` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:301:3 [INFO] [stderr] | [INFO] [stderr] 301 | DELTA_BYTE_ARRAY = 7, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaByteArray` [INFO] [stderr] [INFO] [stderr] warning: variant `RLE_DICTIONARY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:303:3 [INFO] [stderr] | [INFO] [stderr] 303 | RLE_DICTIONARY = 8, [INFO] [stderr] | ^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `RleDictionary` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:307:52 [INFO] [stderr] | [INFO] [stderr] 307 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:310:45 [INFO] [stderr] | [INFO] [stderr] 310 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:358:52 [INFO] [stderr] | [INFO] [stderr] 358 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:361:45 [INFO] [stderr] | [INFO] [stderr] 361 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `DATA_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:392:3 [INFO] [stderr] | [INFO] [stderr] 392 | DATA_PAGE = 0, [INFO] [stderr] | ^^^^^^^^^ help: convert the identifier to upper camel case: `DataPage` [INFO] [stderr] [INFO] [stderr] warning: variant `INDEX_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:393:3 [INFO] [stderr] | [INFO] [stderr] 393 | INDEX_PAGE = 1, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `IndexPage` [INFO] [stderr] [INFO] [stderr] warning: variant `DICTIONARY_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:394:3 [INFO] [stderr] | [INFO] [stderr] 394 | DICTIONARY_PAGE = 2, [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DictionaryPage` [INFO] [stderr] [INFO] [stderr] warning: variant `DATA_PAGE_V2` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:395:3 [INFO] [stderr] | [INFO] [stderr] 395 | DATA_PAGE_V2 = 3, [INFO] [stderr] | ^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DataPageV2` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:399:52 [INFO] [stderr] | [INFO] [stderr] 399 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:402:45 [INFO] [stderr] | [INFO] [stderr] 402 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:438:52 [INFO] [stderr] | [INFO] [stderr] 438 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:441:45 [INFO] [stderr] | [INFO] [stderr] 441 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:510:45 [INFO] [stderr] | [INFO] [stderr] 510 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:566:52 [INFO] [stderr] | [INFO] [stderr] 566 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:648:45 [INFO] [stderr] | [INFO] [stderr] 648 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:667:52 [INFO] [stderr] | [INFO] [stderr] 667 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:693:45 [INFO] [stderr] | [INFO] [stderr] 693 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:712:52 [INFO] [stderr] | [INFO] [stderr] 712 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:738:45 [INFO] [stderr] | [INFO] [stderr] 738 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:757:52 [INFO] [stderr] | [INFO] [stderr] 757 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:783:45 [INFO] [stderr] | [INFO] [stderr] 783 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:802:52 [INFO] [stderr] | [INFO] [stderr] 802 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:828:45 [INFO] [stderr] | [INFO] [stderr] 828 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:847:52 [INFO] [stderr] | [INFO] [stderr] 847 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:873:45 [INFO] [stderr] | [INFO] [stderr] 873 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:892:52 [INFO] [stderr] | [INFO] [stderr] 892 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:923:45 [INFO] [stderr] | [INFO] [stderr] 923 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:942:52 [INFO] [stderr] | [INFO] [stderr] 942 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:979:45 [INFO] [stderr] | [INFO] [stderr] 979 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1013:52 [INFO] [stderr] | [INFO] [stderr] 1013 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1040:45 [INFO] [stderr] | [INFO] [stderr] 1040 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1059:52 [INFO] [stderr] | [INFO] [stderr] 1059 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1085:45 [INFO] [stderr] | [INFO] [stderr] 1085 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1104:52 [INFO] [stderr] | [INFO] [stderr] 1104 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1129:45 [INFO] [stderr] | [INFO] [stderr] 1129 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1184:52 [INFO] [stderr] | [INFO] [stderr] 1184 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1224:45 [INFO] [stderr] | [INFO] [stderr] 1224 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1258:52 [INFO] [stderr] | [INFO] [stderr] 1258 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1292:45 [INFO] [stderr] | [INFO] [stderr] 1292 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1326:52 [INFO] [stderr] | [INFO] [stderr] 1326 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1362:45 [INFO] [stderr] | [INFO] [stderr] 1362 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1396:52 [INFO] [stderr] | [INFO] [stderr] 1396 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1425:45 [INFO] [stderr] | [INFO] [stderr] 1425 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1444:52 [INFO] [stderr] | [INFO] [stderr] 1444 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1473:45 [INFO] [stderr] | [INFO] [stderr] 1473 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1492:52 [INFO] [stderr] | [INFO] [stderr] 1492 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1527:45 [INFO] [stderr] | [INFO] [stderr] 1527 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1652:52 [INFO] [stderr] | [INFO] [stderr] 1652 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1781:45 [INFO] [stderr] | [INFO] [stderr] 1781 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1862:52 [INFO] [stderr] | [INFO] [stderr] 1862 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1974:45 [INFO] [stderr] | [INFO] [stderr] 1974 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2028:52 [INFO] [stderr] | [INFO] [stderr] 2028 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2068:45 [INFO] [stderr] | [INFO] [stderr] 2068 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2087:52 [INFO] [stderr] | [INFO] [stderr] 2087 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2124:45 [INFO] [stderr] | [INFO] [stderr] 2124 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2164:52 [INFO] [stderr] | [INFO] [stderr] 2164 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2232:45 [INFO] [stderr] | [INFO] [stderr] 2232 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2306:52 [INFO] [stderr] | [INFO] [stderr] 2306 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2383:45 [INFO] [stderr] | [INFO] [stderr] 2383 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2454:52 [INFO] [stderr] | [INFO] [stderr] 2454 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2529:45 [INFO] [stderr] | [INFO] [stderr] 2529 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2562:52 [INFO] [stderr] | [INFO] [stderr] 2562 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2605:45 [INFO] [stderr] | [INFO] [stderr] 2605 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2646:52 [INFO] [stderr] | [INFO] [stderr] 2646 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2686:45 [INFO] [stderr] | [INFO] [stderr] 2686 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2727:52 [INFO] [stderr] | [INFO] [stderr] 2727 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2800:45 [INFO] [stderr] | [INFO] [stderr] 2800 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2930:52 [INFO] [stderr] | [INFO] [stderr] 2930 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3057:45 [INFO] [stderr] | [INFO] [stderr] 3057 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3120:52 [INFO] [stderr] | [INFO] [stderr] 3120 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3207:45 [INFO] [stderr] | [INFO] [stderr] 3207 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3266:52 [INFO] [stderr] | [INFO] [stderr] 3266 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3312:45 [INFO] [stderr] | [INFO] [stderr] 3312 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3331:52 [INFO] [stderr] | [INFO] [stderr] 3331 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3355:45 [INFO] [stderr] | [INFO] [stderr] 3355 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3403:52 [INFO] [stderr] | [INFO] [stderr] 3403 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3442:45 [INFO] [stderr] | [INFO] [stderr] 3442 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3483:52 [INFO] [stderr] | [INFO] [stderr] 3483 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3517:45 [INFO] [stderr] | [INFO] [stderr] 3517 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3550:52 [INFO] [stderr] | [INFO] [stderr] 3550 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3607:45 [INFO] [stderr] | [INFO] [stderr] 3607 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3685:52 [INFO] [stderr] | [INFO] [stderr] 3685 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3781:45 [INFO] [stderr] | [INFO] [stderr] 3781 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3871:52 [INFO] [stderr] | [INFO] [stderr] 3871 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:438:10 [INFO] [stderr] | [INFO] [stderr] 438 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:441:10 [INFO] [stderr] | [INFO] [stderr] 441 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:690:10 [INFO] [stderr] | [INFO] [stderr] 690 | pub fn new() -> UUIDType { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:693:10 [INFO] [stderr] | [INFO] [stderr] 693 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:712:10 [INFO] [stderr] | [INFO] [stderr] 712 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:1965:10 [INFO] [stderr] | [INFO] [stderr] 1965 | pub fn new(num_values: i32, encoding: Encoding, definition_level_encoding: Encoding, repetition_level_encoding: Encoding, statistics: F5) -> DataPageHeader where F5: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:1974:10 [INFO] [stderr] | [INFO] [stderr] 1974 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2028:10 [INFO] [stderr] | [INFO] [stderr] 2028 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2065:10 [INFO] [stderr] | [INFO] [stderr] 2065 | pub fn new() -> IndexPageHeader { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2068:10 [INFO] [stderr] | [INFO] [stderr] 2068 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2087:10 [INFO] [stderr] | [INFO] [stderr] 2087 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2117:10 [INFO] [stderr] | [INFO] [stderr] 2117 | pub fn new(num_values: i32, encoding: Encoding, is_sorted: F3) -> DictionaryPageHeader where F3: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2124:10 [INFO] [stderr] | [INFO] [stderr] 2124 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2164:10 [INFO] [stderr] | [INFO] [stderr] 2164 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2220:10 [INFO] [stderr] | [INFO] [stderr] 2220 | pub fn new(num_values: i32, num_nulls: i32, num_rows: i32, encoding: Encoding, definition_levels_byte_length: i32, repetition_levels_byte_length: i32, is_compressed: F7, statistics: F8) -> DataPageHeaderV2 where F7: Into>, F8: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2232:10 [INFO] [stderr] | [INFO] [stderr] 2232 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2306:10 [INFO] [stderr] | [INFO] [stderr] 2306 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2371:10 [INFO] [stderr] | [INFO] [stderr] 2371 | pub fn new(type_: PageType, uncompressed_page_size: i32, compressed_page_size: i32, crc: F4, data_page_header: F5, index_page_header: F6, dictionary_page_header: F7, data_page_header_v2: F8) -> PageHeader where F4: Into>, F5: Into>, F6: Into>, F7: Into>, F8: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2383:10 [INFO] [stderr] | [INFO] [stderr] 2383 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2454:10 [INFO] [stderr] | [INFO] [stderr] 2454 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3435:10 [INFO] [stderr] | [INFO] [stderr] 3435 | pub fn new(offset: i64, compressed_page_size: i32, first_row_index: i64) -> PageLocation { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3442:10 [INFO] [stderr] | [INFO] [stderr] 3442 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3483:10 [INFO] [stderr] | [INFO] [stderr] 3483 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3512:10 [INFO] [stderr] | [INFO] [stderr] 3512 | pub fn new(page_locations: Vec) -> OffsetIndex { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3517:10 [INFO] [stderr] | [INFO] [stderr] 3517 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3550:10 [INFO] [stderr] | [INFO] [stderr] 3550 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3598:10 [INFO] [stderr] | [INFO] [stderr] 3598 | pub fn new(null_pages: Vec, min_values: Vec>, max_values: Vec>, boundary_order: BoundaryOrder, null_counts: F5) -> ColumnIndex where F5: Into>> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3607:10 [INFO] [stderr] | [INFO] [stderr] 3607 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3685:10 [INFO] [stderr] | [INFO] [stderr] 3685 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/encodings.rs:13:12 [INFO] [stderr] | [INFO] [stderr] 13 | pub fn new(max_level: u32, data: &'a [u8]) -> Result { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never read: `ptr` [INFO] [stderr] --> src/encodings.rs:53:5 [INFO] [stderr] | [INFO] [stderr] 53 | ptr: u32, [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: struct is never constructed: `BitPackingReader` [INFO] [stderr] --> src/encodings.rs:118:12 [INFO] [stderr] | [INFO] [stderr] 118 | pub struct BitPackingReader<'a> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/encodings.rs:124:8 [INFO] [stderr] | [INFO] [stderr] 124 | fn new(data: &'a [u8]) -> Result { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: function is never used: `bit_width` [INFO] [stderr] --> src/encodings.rs:141:4 [INFO] [stderr] | [INFO] [stderr] 141 | fn bit_width(max_int: u32) -> u32 { [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: function is never used: `byte_width` [INFO] [stderr] --> src/encodings.rs:144:4 [INFO] [stderr] | [INFO] [stderr] 144 | fn byte_width(bit_width: u32) -> u32 { [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: struct is never constructed: `ColumnPagesIter` [INFO] [stderr] --> src/lib.rs:65:8 [INFO] [stderr] | [INFO] [stderr] 65 | struct ColumnPagesIter<'a> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/lib.rs:72:12 [INFO] [stderr] | [INFO] [stderr] 72 | pub fn new(file: &'a mut BufReader, file_meta: &'a FileMetaData, column: &str) -> ColumnPagesIter<'a> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_page_header` [INFO] [stderr] --> src/lib.rs:86:8 [INFO] [stderr] | [INFO] [stderr] 86 | fn read_page_header(&mut self, file: &mut Take) -> PageHeader { [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `iter` [INFO] [stderr] --> src/lib.rs:96:8 [INFO] [stderr] | [INFO] [stderr] 96 | fn iter(&'a mut self) -> impl 'a + Iterator { [INFO] [stderr] | ^^^^ [INFO] [stderr] [INFO] [stderr] warning: 150 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: variant `BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:45:3 [INFO] [stderr] | [INFO] [stderr] 45 | BYTE_ARRAY = 6, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `ByteArray` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_camel_case_types)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variant `FIXED_LEN_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:46:3 [INFO] [stderr] | [INFO] [stderr] 46 | FIXED_LEN_BYTE_ARRAY = 7, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `FixedLenByteArray` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:50:52 [INFO] [stderr] | [INFO] [stderr] 50 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:53:45 [INFO] [stderr] | [INFO] [stderr] 53 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `MAP_KEY_VALUE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:93:3 [INFO] [stderr] | [INFO] [stderr] 93 | MAP_KEY_VALUE = 2, [INFO] [stderr] | ^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `MapKeyValue` [INFO] [stderr] [INFO] [stderr] warning: variant `TIME_MILLIS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:121:3 [INFO] [stderr] | [INFO] [stderr] 121 | TIME_MILLIS = 7, [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimeMillis` [INFO] [stderr] [INFO] [stderr] warning: variant `TIME_MICROS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:126:3 [INFO] [stderr] | [INFO] [stderr] 126 | TIME_MICROS = 8, [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimeMicros` [INFO] [stderr] [INFO] [stderr] warning: variant `TIMESTAMP_MILLIS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:131:3 [INFO] [stderr] | [INFO] [stderr] 131 | TIMESTAMP_MILLIS = 9, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimestampMillis` [INFO] [stderr] [INFO] [stderr] warning: variant `TIMESTAMP_MICROS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:136:3 [INFO] [stderr] | [INFO] [stderr] 136 | TIMESTAMP_MICROS = 10, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimestampMicros` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_8` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:144:3 [INFO] [stderr] | [INFO] [stderr] 144 | UINT_8 = 11, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Uint8` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_16` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:145:3 [INFO] [stderr] | [INFO] [stderr] 145 | UINT_16 = 12, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint16` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_32` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:146:3 [INFO] [stderr] | [INFO] [stderr] 146 | UINT_32 = 13, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint32` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_64` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:147:3 [INFO] [stderr] | [INFO] [stderr] 147 | UINT_64 = 14, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint64` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_8` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:155:3 [INFO] [stderr] | [INFO] [stderr] 155 | INT_8 = 15, [INFO] [stderr] | ^^^^^ help: convert the identifier to upper camel case: `Int8` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_16` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:156:3 [INFO] [stderr] | [INFO] [stderr] 156 | INT_16 = 16, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int16` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_32` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:157:3 [INFO] [stderr] | [INFO] [stderr] 157 | INT_32 = 17, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int32` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_64` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:158:3 [INFO] [stderr] | [INFO] [stderr] 158 | INT_64 = 18, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int64` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:181:52 [INFO] [stderr] | [INFO] [stderr] 181 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:184:45 [INFO] [stderr] | [INFO] [stderr] 184 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:240:52 [INFO] [stderr] | [INFO] [stderr] 240 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:243:45 [INFO] [stderr] | [INFO] [stderr] 243 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `PLAIN_DICTIONARY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:286:3 [INFO] [stderr] | [INFO] [stderr] 286 | PLAIN_DICTIONARY = 2, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `PlainDictionary` [INFO] [stderr] [INFO] [stderr] warning: variant `BIT_PACKED` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:292:3 [INFO] [stderr] | [INFO] [stderr] 292 | BIT_PACKED = 4, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `BitPacked` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_BINARY_PACKED` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:295:3 [INFO] [stderr] | [INFO] [stderr] 295 | DELTA_BINARY_PACKED = 5, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaBinaryPacked` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_LENGTH_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:298:3 [INFO] [stderr] | [INFO] [stderr] 298 | DELTA_LENGTH_BYTE_ARRAY = 6, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaLengthByteArray` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:301:3 [INFO] [stderr] | [INFO] [stderr] 301 | DELTA_BYTE_ARRAY = 7, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaByteArray` [INFO] [stderr] [INFO] [stderr] warning: variant `RLE_DICTIONARY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:303:3 [INFO] [stderr] | [INFO] [stderr] 303 | RLE_DICTIONARY = 8, [INFO] [stderr] | ^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `RleDictionary` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:307:52 [INFO] [stderr] | [INFO] [stderr] 307 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:310:45 [INFO] [stderr] | [INFO] [stderr] 310 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:358:52 [INFO] [stderr] | [INFO] [stderr] 358 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:361:45 [INFO] [stderr] | [INFO] [stderr] 361 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `DATA_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:392:3 [INFO] [stderr] | [INFO] [stderr] 392 | DATA_PAGE = 0, [INFO] [stderr] | ^^^^^^^^^ help: convert the identifier to upper camel case: `DataPage` [INFO] [stderr] [INFO] [stderr] warning: variant `INDEX_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:393:3 [INFO] [stderr] | [INFO] [stderr] 393 | INDEX_PAGE = 1, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `IndexPage` [INFO] [stderr] [INFO] [stderr] warning: variant `DICTIONARY_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:394:3 [INFO] [stderr] | [INFO] [stderr] 394 | DICTIONARY_PAGE = 2, [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DictionaryPage` [INFO] [stderr] [INFO] [stderr] warning: variant `DATA_PAGE_V2` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:395:3 [INFO] [stderr] | [INFO] [stderr] 395 | DATA_PAGE_V2 = 3, [INFO] [stderr] | ^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DataPageV2` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:399:52 [INFO] [stderr] | [INFO] [stderr] 399 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:402:45 [INFO] [stderr] | [INFO] [stderr] 402 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:438:52 [INFO] [stderr] | [INFO] [stderr] 438 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:441:45 [INFO] [stderr] | [INFO] [stderr] 441 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:510:45 [INFO] [stderr] | [INFO] [stderr] 510 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:566:52 [INFO] [stderr] | [INFO] [stderr] 566 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:648:45 [INFO] [stderr] | [INFO] [stderr] 648 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:667:52 [INFO] [stderr] | [INFO] [stderr] 667 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:693:45 [INFO] [stderr] | [INFO] [stderr] 693 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:712:52 [INFO] [stderr] | [INFO] [stderr] 712 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:738:45 [INFO] [stderr] | [INFO] [stderr] 738 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:757:52 [INFO] [stderr] | [INFO] [stderr] 757 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:783:45 [INFO] [stderr] | [INFO] [stderr] 783 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:802:52 [INFO] [stderr] | [INFO] [stderr] 802 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:828:45 [INFO] [stderr] | [INFO] [stderr] 828 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:847:52 [INFO] [stderr] | [INFO] [stderr] 847 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:873:45 [INFO] [stderr] | [INFO] [stderr] 873 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:892:52 [INFO] [stderr] | [INFO] [stderr] 892 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:923:45 [INFO] [stderr] | [INFO] [stderr] 923 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:942:52 [INFO] [stderr] | [INFO] [stderr] 942 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:979:45 [INFO] [stderr] | [INFO] [stderr] 979 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1013:52 [INFO] [stderr] | [INFO] [stderr] 1013 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1040:45 [INFO] [stderr] | [INFO] [stderr] 1040 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1059:52 [INFO] [stderr] | [INFO] [stderr] 1059 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1085:45 [INFO] [stderr] | [INFO] [stderr] 1085 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1104:52 [INFO] [stderr] | [INFO] [stderr] 1104 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1129:45 [INFO] [stderr] | [INFO] [stderr] 1129 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1184:52 [INFO] [stderr] | [INFO] [stderr] 1184 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1224:45 [INFO] [stderr] | [INFO] [stderr] 1224 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1258:52 [INFO] [stderr] | [INFO] [stderr] 1258 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1292:45 [INFO] [stderr] | [INFO] [stderr] 1292 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1326:52 [INFO] [stderr] | [INFO] [stderr] 1326 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1362:45 [INFO] [stderr] | [INFO] [stderr] 1362 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1396:52 [INFO] [stderr] | [INFO] [stderr] 1396 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1425:45 [INFO] [stderr] | [INFO] [stderr] 1425 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1444:52 [INFO] [stderr] | [INFO] [stderr] 1444 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1473:45 [INFO] [stderr] | [INFO] [stderr] 1473 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1492:52 [INFO] [stderr] | [INFO] [stderr] 1492 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1527:45 [INFO] [stderr] | [INFO] [stderr] 1527 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1652:52 [INFO] [stderr] | [INFO] [stderr] 1652 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1781:45 [INFO] [stderr] | [INFO] [stderr] 1781 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1862:52 [INFO] [stderr] | [INFO] [stderr] 1862 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1974:45 [INFO] [stderr] | [INFO] [stderr] 1974 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2028:52 [INFO] [stderr] | [INFO] [stderr] 2028 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2068:45 [INFO] [stderr] | [INFO] [stderr] 2068 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2087:52 [INFO] [stderr] | [INFO] [stderr] 2087 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2124:45 [INFO] [stderr] | [INFO] [stderr] 2124 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2164:52 [INFO] [stderr] | [INFO] [stderr] 2164 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2232:45 [INFO] [stderr] | [INFO] [stderr] 2232 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2306:52 [INFO] [stderr] | [INFO] [stderr] 2306 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2383:45 [INFO] [stderr] | [INFO] [stderr] 2383 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2454:52 [INFO] [stderr] | [INFO] [stderr] 2454 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2529:45 [INFO] [stderr] | [INFO] [stderr] 2529 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2562:52 [INFO] [stderr] | [INFO] [stderr] 2562 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2605:45 [INFO] [stderr] | [INFO] [stderr] 2605 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2646:52 [INFO] [stderr] | [INFO] [stderr] 2646 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2686:45 [INFO] [stderr] | [INFO] [stderr] 2686 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2727:52 [INFO] [stderr] | [INFO] [stderr] 2727 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2800:45 [INFO] [stderr] | [INFO] [stderr] 2800 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2930:52 [INFO] [stderr] | [INFO] [stderr] 2930 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3057:45 [INFO] [stderr] | [INFO] [stderr] 3057 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3120:52 [INFO] [stderr] | [INFO] [stderr] 3120 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3207:45 [INFO] [stderr] | [INFO] [stderr] 3207 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3266:52 [INFO] [stderr] | [INFO] [stderr] 3266 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3312:45 [INFO] [stderr] | [INFO] [stderr] 3312 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3331:52 [INFO] [stderr] | [INFO] [stderr] 3331 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3355:45 [INFO] [stderr] | [INFO] [stderr] 3355 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3403:52 [INFO] [stderr] | [INFO] [stderr] 3403 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3442:45 [INFO] [stderr] | [INFO] [stderr] 3442 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3483:52 [INFO] [stderr] | [INFO] [stderr] 3483 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3517:45 [INFO] [stderr] | [INFO] [stderr] 3517 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3550:52 [INFO] [stderr] | [INFO] [stderr] 3550 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3607:45 [INFO] [stderr] | [INFO] [stderr] 3607 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3685:52 [INFO] [stderr] | [INFO] [stderr] 3685 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3781:45 [INFO] [stderr] | [INFO] [stderr] 3781 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3871:52 [INFO] [stderr] | [INFO] [stderr] 3871 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:438:10 [INFO] [stderr] | [INFO] [stderr] 438 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:441:10 [INFO] [stderr] | [INFO] [stderr] 441 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:690:10 [INFO] [stderr] | [INFO] [stderr] 690 | pub fn new() -> UUIDType { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:693:10 [INFO] [stderr] | [INFO] [stderr] 693 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:712:10 [INFO] [stderr] | [INFO] [stderr] 712 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:1965:10 [INFO] [stderr] | [INFO] [stderr] 1965 | pub fn new(num_values: i32, encoding: Encoding, definition_level_encoding: Encoding, repetition_level_encoding: Encoding, statistics: F5) -> DataPageHeader where F5: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2028:10 [INFO] [stderr] | [INFO] [stderr] 2028 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2065:10 [INFO] [stderr] | [INFO] [stderr] 2065 | pub fn new() -> IndexPageHeader { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2087:10 [INFO] [stderr] | [INFO] [stderr] 2087 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2117:10 [INFO] [stderr] | [INFO] [stderr] 2117 | pub fn new(num_values: i32, encoding: Encoding, is_sorted: F3) -> DictionaryPageHeader where F3: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2164:10 [INFO] [stderr] | [INFO] [stderr] 2164 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2220:10 [INFO] [stderr] | [INFO] [stderr] 2220 | pub fn new(num_values: i32, num_nulls: i32, num_rows: i32, encoding: Encoding, definition_levels_byte_length: i32, repetition_levels_byte_length: i32, is_compressed: F7, statistics: F8) -> DataPageHeaderV2 where F7: Into>, F8: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2306:10 [INFO] [stderr] | [INFO] [stderr] 2306 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2371:10 [INFO] [stderr] | [INFO] [stderr] 2371 | pub fn new(type_: PageType, uncompressed_page_size: i32, compressed_page_size: i32, crc: F4, data_page_header: F5, index_page_header: F6, dictionary_page_header: F7, data_page_header_v2: F8) -> PageHeader where F4: Into>, F5: Into>, F6: Into>, F7: Into>, F8: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2454:10 [INFO] [stderr] | [INFO] [stderr] 2454 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3435:10 [INFO] [stderr] | [INFO] [stderr] 3435 | pub fn new(offset: i64, compressed_page_size: i32, first_row_index: i64) -> PageLocation { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3442:10 [INFO] [stderr] | [INFO] [stderr] 3442 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3483:10 [INFO] [stderr] | [INFO] [stderr] 3483 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3512:10 [INFO] [stderr] | [INFO] [stderr] 3512 | pub fn new(page_locations: Vec) -> OffsetIndex { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3517:10 [INFO] [stderr] | [INFO] [stderr] 3517 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3550:10 [INFO] [stderr] | [INFO] [stderr] 3550 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3598:10 [INFO] [stderr] | [INFO] [stderr] 3598 | pub fn new(null_pages: Vec, min_values: Vec>, max_values: Vec>, boundary_order: BoundaryOrder, null_counts: F5) -> ColumnIndex where F5: Into>> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3607:10 [INFO] [stderr] | [INFO] [stderr] 3607 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3685:10 [INFO] [stderr] | [INFO] [stderr] 3685 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/encodings.rs:13:12 [INFO] [stderr] | [INFO] [stderr] 13 | pub fn new(max_level: u32, data: &'a [u8]) -> Result { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never read: `ptr` [INFO] [stderr] --> src/encodings.rs:53:5 [INFO] [stderr] | [INFO] [stderr] 53 | ptr: u32, [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: struct is never constructed: `BitPackingReader` [INFO] [stderr] --> src/encodings.rs:118:12 [INFO] [stderr] | [INFO] [stderr] 118 | pub struct BitPackingReader<'a> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/encodings.rs:124:8 [INFO] [stderr] | [INFO] [stderr] 124 | fn new(data: &'a [u8]) -> Result { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: function is never used: `byte_width` [INFO] [stderr] --> src/encodings.rs:144:4 [INFO] [stderr] | [INFO] [stderr] 144 | fn byte_width(bit_width: u32) -> u32 { [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never read: `column_idx` [INFO] [stderr] --> src/lib.rs:68:5 [INFO] [stderr] | [INFO] [stderr] 68 | column_idx: usize, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_page_header` [INFO] [stderr] --> src/lib.rs:86:8 [INFO] [stderr] | [INFO] [stderr] 86 | fn read_page_header(&mut self, file: &mut Take) -> PageHeader { [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: 142 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 4.84s [INFO] running `"docker" "inspect" "f5274e41b6535f1d7ae79634ee4be28ce0987e814fa576c023df2aa644ae9c03"` [INFO] running `"docker" "rm" "-f" "f5274e41b6535f1d7ae79634ee4be28ce0987e814fa576c023df2aa644ae9c03"` [INFO] [stdout] f5274e41b6535f1d7ae79634ee4be28ce0987e814fa576c023df2aa644ae9c03 [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2020-06-03" "test" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] c2d8d950db92a59f6df80b86f21ece8dc33051ec2fd312b4ab947265f4000d3d [INFO] running `"docker" "start" "-a" "c2d8d950db92a59f6df80b86f21ece8dc33051ec2fd312b4ab947265f4000d3d"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] warning: dependency (thrift) specified without providing a local path, Git repository, or version to use. This will be considered an error in future versions [INFO] [stderr] warning: variant `BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:45:3 [INFO] [stderr] | [INFO] [stderr] 45 | BYTE_ARRAY = 6, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `ByteArray` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_camel_case_types)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variant `FIXED_LEN_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:46:3 [INFO] [stderr] | [INFO] [stderr] 46 | FIXED_LEN_BYTE_ARRAY = 7, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `FixedLenByteArray` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:50:52 [INFO] [stderr] | [INFO] [stderr] 50 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:53:45 [INFO] [stderr] | [INFO] [stderr] 53 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `MAP_KEY_VALUE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:93:3 [INFO] [stderr] | [INFO] [stderr] 93 | MAP_KEY_VALUE = 2, [INFO] [stderr] | ^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `MapKeyValue` [INFO] [stderr] [INFO] [stderr] warning: variant `TIME_MILLIS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:121:3 [INFO] [stderr] | [INFO] [stderr] 121 | TIME_MILLIS = 7, [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimeMillis` [INFO] [stderr] [INFO] [stderr] warning: variant `TIME_MICROS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:126:3 [INFO] [stderr] | [INFO] [stderr] 126 | TIME_MICROS = 8, [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimeMicros` [INFO] [stderr] [INFO] [stderr] warning: variant `TIMESTAMP_MILLIS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:131:3 [INFO] [stderr] | [INFO] [stderr] 131 | TIMESTAMP_MILLIS = 9, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimestampMillis` [INFO] [stderr] [INFO] [stderr] warning: variant `TIMESTAMP_MICROS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:136:3 [INFO] [stderr] | [INFO] [stderr] 136 | TIMESTAMP_MICROS = 10, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimestampMicros` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_8` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:144:3 [INFO] [stderr] | [INFO] [stderr] 144 | UINT_8 = 11, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Uint8` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_16` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:145:3 [INFO] [stderr] | [INFO] [stderr] 145 | UINT_16 = 12, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint16` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_32` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:146:3 [INFO] [stderr] | [INFO] [stderr] 146 | UINT_32 = 13, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint32` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_64` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:147:3 [INFO] [stderr] | [INFO] [stderr] 147 | UINT_64 = 14, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint64` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_8` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:155:3 [INFO] [stderr] | [INFO] [stderr] 155 | INT_8 = 15, [INFO] [stderr] | ^^^^^ help: convert the identifier to upper camel case: `Int8` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_16` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:156:3 [INFO] [stderr] | [INFO] [stderr] 156 | INT_16 = 16, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int16` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_32` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:157:3 [INFO] [stderr] | [INFO] [stderr] 157 | INT_32 = 17, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int32` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_64` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:158:3 [INFO] [stderr] | [INFO] [stderr] 158 | INT_64 = 18, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int64` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:181:52 [INFO] [stderr] | [INFO] [stderr] 181 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:184:45 [INFO] [stderr] | [INFO] [stderr] 184 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:240:52 [INFO] [stderr] | [INFO] [stderr] 240 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:243:45 [INFO] [stderr] | [INFO] [stderr] 243 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `PLAIN_DICTIONARY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:286:3 [INFO] [stderr] | [INFO] [stderr] 286 | PLAIN_DICTIONARY = 2, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `PlainDictionary` [INFO] [stderr] [INFO] [stderr] warning: variant `BIT_PACKED` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:292:3 [INFO] [stderr] | [INFO] [stderr] 292 | BIT_PACKED = 4, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `BitPacked` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_BINARY_PACKED` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:295:3 [INFO] [stderr] | [INFO] [stderr] 295 | DELTA_BINARY_PACKED = 5, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaBinaryPacked` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_LENGTH_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:298:3 [INFO] [stderr] | [INFO] [stderr] 298 | DELTA_LENGTH_BYTE_ARRAY = 6, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaLengthByteArray` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:301:3 [INFO] [stderr] | [INFO] [stderr] 301 | DELTA_BYTE_ARRAY = 7, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaByteArray` [INFO] [stderr] [INFO] [stderr] warning: variant `RLE_DICTIONARY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:303:3 [INFO] [stderr] | [INFO] [stderr] 303 | RLE_DICTIONARY = 8, [INFO] [stderr] | ^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `RleDictionary` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:307:52 [INFO] [stderr] | [INFO] [stderr] 307 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:310:45 [INFO] [stderr] | [INFO] [stderr] 310 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:358:52 [INFO] [stderr] | [INFO] [stderr] 358 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:361:45 [INFO] [stderr] | [INFO] [stderr] 361 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `DATA_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:392:3 [INFO] [stderr] | [INFO] [stderr] 392 | DATA_PAGE = 0, [INFO] [stderr] | ^^^^^^^^^ help: convert the identifier to upper camel case: `DataPage` [INFO] [stderr] [INFO] [stderr] warning: variant `INDEX_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:393:3 [INFO] [stderr] | [INFO] [stderr] 393 | INDEX_PAGE = 1, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `IndexPage` [INFO] [stderr] [INFO] [stderr] warning: variant `DICTIONARY_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:394:3 [INFO] [stderr] | [INFO] [stderr] 394 | DICTIONARY_PAGE = 2, [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DictionaryPage` [INFO] [stderr] [INFO] [stderr] warning: variant `DATA_PAGE_V2` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:395:3 [INFO] [stderr] | [INFO] [stderr] 395 | DATA_PAGE_V2 = 3, [INFO] [stderr] | ^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DataPageV2` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:399:52 [INFO] [stderr] | [INFO] [stderr] 399 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:402:45 [INFO] [stderr] | [INFO] [stderr] 402 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:438:52 [INFO] [stderr] | [INFO] [stderr] 438 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:441:45 [INFO] [stderr] | [INFO] [stderr] 441 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:510:45 [INFO] [stderr] | [INFO] [stderr] 510 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:566:52 [INFO] [stderr] | [INFO] [stderr] 566 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:648:45 [INFO] [stderr] | [INFO] [stderr] 648 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:667:52 [INFO] [stderr] | [INFO] [stderr] 667 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:693:45 [INFO] [stderr] | [INFO] [stderr] 693 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:712:52 [INFO] [stderr] | [INFO] [stderr] 712 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:738:45 [INFO] [stderr] | [INFO] [stderr] 738 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:757:52 [INFO] [stderr] | [INFO] [stderr] 757 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:783:45 [INFO] [stderr] | [INFO] [stderr] 783 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:802:52 [INFO] [stderr] | [INFO] [stderr] 802 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:828:45 [INFO] [stderr] | [INFO] [stderr] 828 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:847:52 [INFO] [stderr] | [INFO] [stderr] 847 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:873:45 [INFO] [stderr] | [INFO] [stderr] 873 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:892:52 [INFO] [stderr] | [INFO] [stderr] 892 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:923:45 [INFO] [stderr] | [INFO] [stderr] 923 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:942:52 [INFO] [stderr] | [INFO] [stderr] 942 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:979:45 [INFO] [stderr] | [INFO] [stderr] 979 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1013:52 [INFO] [stderr] | [INFO] [stderr] 1013 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1040:45 [INFO] [stderr] | [INFO] [stderr] 1040 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1059:52 [INFO] [stderr] | [INFO] [stderr] 1059 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1085:45 [INFO] [stderr] | [INFO] [stderr] 1085 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1104:52 [INFO] [stderr] | [INFO] [stderr] 1104 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1129:45 [INFO] [stderr] | [INFO] [stderr] 1129 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1184:52 [INFO] [stderr] | [INFO] [stderr] 1184 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1224:45 [INFO] [stderr] | [INFO] [stderr] 1224 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1258:52 [INFO] [stderr] | [INFO] [stderr] 1258 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1292:45 [INFO] [stderr] | [INFO] [stderr] 1292 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1326:52 [INFO] [stderr] | [INFO] [stderr] 1326 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1362:45 [INFO] [stderr] | [INFO] [stderr] 1362 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1396:52 [INFO] [stderr] | [INFO] [stderr] 1396 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1425:45 [INFO] [stderr] | [INFO] [stderr] 1425 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1444:52 [INFO] [stderr] | [INFO] [stderr] 1444 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1473:45 [INFO] [stderr] | [INFO] [stderr] 1473 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1492:52 [INFO] [stderr] | [INFO] [stderr] 1492 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1527:45 [INFO] [stderr] | [INFO] [stderr] 1527 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1652:52 [INFO] [stderr] | [INFO] [stderr] 1652 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1781:45 [INFO] [stderr] | [INFO] [stderr] 1781 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1862:52 [INFO] [stderr] | [INFO] [stderr] 1862 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1974:45 [INFO] [stderr] | [INFO] [stderr] 1974 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2028:52 [INFO] [stderr] | [INFO] [stderr] 2028 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2068:45 [INFO] [stderr] | [INFO] [stderr] 2068 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2087:52 [INFO] [stderr] | [INFO] [stderr] 2087 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2124:45 [INFO] [stderr] | [INFO] [stderr] 2124 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2164:52 [INFO] [stderr] | [INFO] [stderr] 2164 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2232:45 [INFO] [stderr] | [INFO] [stderr] 2232 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2306:52 [INFO] [stderr] | [INFO] [stderr] 2306 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2383:45 [INFO] [stderr] | [INFO] [stderr] 2383 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2454:52 [INFO] [stderr] | [INFO] [stderr] 2454 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2529:45 [INFO] [stderr] | [INFO] [stderr] 2529 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2562:52 [INFO] [stderr] | [INFO] [stderr] 2562 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2605:45 [INFO] [stderr] | [INFO] [stderr] 2605 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2646:52 [INFO] [stderr] | [INFO] [stderr] 2646 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2686:45 [INFO] [stderr] | [INFO] [stderr] 2686 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2727:52 [INFO] [stderr] | [INFO] [stderr] 2727 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2800:45 [INFO] [stderr] | [INFO] [stderr] 2800 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2930:52 [INFO] [stderr] | [INFO] [stderr] 2930 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3057:45 [INFO] [stderr] | [INFO] [stderr] 3057 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3120:52 [INFO] [stderr] | [INFO] [stderr] 3120 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3207:45 [INFO] [stderr] | [INFO] [stderr] 3207 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3266:52 [INFO] [stderr] | [INFO] [stderr] 3266 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3312:45 [INFO] [stderr] | [INFO] [stderr] 3312 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3331:52 [INFO] [stderr] | [INFO] [stderr] 3331 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3355:45 [INFO] [stderr] | [INFO] [stderr] 3355 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3403:52 [INFO] [stderr] | [INFO] [stderr] 3403 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3442:45 [INFO] [stderr] | [INFO] [stderr] 3442 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3483:52 [INFO] [stderr] | [INFO] [stderr] 3483 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3517:45 [INFO] [stderr] | [INFO] [stderr] 3517 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3550:52 [INFO] [stderr] | [INFO] [stderr] 3550 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3607:45 [INFO] [stderr] | [INFO] [stderr] 3607 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3685:52 [INFO] [stderr] | [INFO] [stderr] 3685 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3781:45 [INFO] [stderr] | [INFO] [stderr] 3781 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3871:52 [INFO] [stderr] | [INFO] [stderr] 3871 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:438:10 [INFO] [stderr] | [INFO] [stderr] 438 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:441:10 [INFO] [stderr] | [INFO] [stderr] 441 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:690:10 [INFO] [stderr] | [INFO] [stderr] 690 | pub fn new() -> UUIDType { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:693:10 [INFO] [stderr] | [INFO] [stderr] 693 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:712:10 [INFO] [stderr] | [INFO] [stderr] 712 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:1965:10 [INFO] [stderr] | [INFO] [stderr] 1965 | pub fn new(num_values: i32, encoding: Encoding, definition_level_encoding: Encoding, repetition_level_encoding: Encoding, statistics: F5) -> DataPageHeader where F5: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:1974:10 [INFO] [stderr] | [INFO] [stderr] 1974 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2028:10 [INFO] [stderr] | [INFO] [stderr] 2028 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2065:10 [INFO] [stderr] | [INFO] [stderr] 2065 | pub fn new() -> IndexPageHeader { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2068:10 [INFO] [stderr] | [INFO] [stderr] 2068 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2087:10 [INFO] [stderr] | [INFO] [stderr] 2087 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2117:10 [INFO] [stderr] | [INFO] [stderr] 2117 | pub fn new(num_values: i32, encoding: Encoding, is_sorted: F3) -> DictionaryPageHeader where F3: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2124:10 [INFO] [stderr] | [INFO] [stderr] 2124 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2164:10 [INFO] [stderr] | [INFO] [stderr] 2164 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2220:10 [INFO] [stderr] | [INFO] [stderr] 2220 | pub fn new(num_values: i32, num_nulls: i32, num_rows: i32, encoding: Encoding, definition_levels_byte_length: i32, repetition_levels_byte_length: i32, is_compressed: F7, statistics: F8) -> DataPageHeaderV2 where F7: Into>, F8: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2232:10 [INFO] [stderr] | [INFO] [stderr] 2232 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2306:10 [INFO] [stderr] | [INFO] [stderr] 2306 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2371:10 [INFO] [stderr] | [INFO] [stderr] 2371 | pub fn new(type_: PageType, uncompressed_page_size: i32, compressed_page_size: i32, crc: F4, data_page_header: F5, index_page_header: F6, dictionary_page_header: F7, data_page_header_v2: F8) -> PageHeader where F4: Into>, F5: Into>, F6: Into>, F7: Into>, F8: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:2383:10 [INFO] [stderr] | [INFO] [stderr] 2383 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2454:10 [INFO] [stderr] | [INFO] [stderr] 2454 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3435:10 [INFO] [stderr] | [INFO] [stderr] 3435 | pub fn new(offset: i64, compressed_page_size: i32, first_row_index: i64) -> PageLocation { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3442:10 [INFO] [stderr] | [INFO] [stderr] 3442 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3483:10 [INFO] [stderr] | [INFO] [stderr] 3483 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3512:10 [INFO] [stderr] | [INFO] [stderr] 3512 | pub fn new(page_locations: Vec) -> OffsetIndex { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3517:10 [INFO] [stderr] | [INFO] [stderr] 3517 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3550:10 [INFO] [stderr] | [INFO] [stderr] 3550 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3598:10 [INFO] [stderr] | [INFO] [stderr] 3598 | pub fn new(null_pages: Vec, min_values: Vec>, max_values: Vec>, boundary_order: BoundaryOrder, null_counts: F5) -> ColumnIndex where F5: Into>> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3607:10 [INFO] [stderr] | [INFO] [stderr] 3607 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3685:10 [INFO] [stderr] | [INFO] [stderr] 3685 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/encodings.rs:13:12 [INFO] [stderr] | [INFO] [stderr] 13 | pub fn new(max_level: u32, data: &'a [u8]) -> Result { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never read: `ptr` [INFO] [stderr] --> src/encodings.rs:53:5 [INFO] [stderr] | [INFO] [stderr] 53 | ptr: u32, [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: variant `BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:45:3 [INFO] [stderr] | [INFO] [stderr] 45 | BYTE_ARRAY = 6, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `ByteArray` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_camel_case_types)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variant `FIXED_LEN_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:46:3 [INFO] [stderr] | [INFO] [stderr] 46 | FIXED_LEN_BYTE_ARRAY = 7, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `FixedLenByteArray` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:50:52 [INFO] [stderr] | [INFO] [stderr] 50 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: struct is never constructed: `BitPackingReader` [INFO] [stderr] --> src/encodings.rs:118:12 [INFO] [stderr] | [INFO] [stderr] 118 | pub struct BitPackingReader<'a> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/encodings.rs:124:8 [INFO] [stderr] | [INFO] [stderr] 124 | fn new(data: &'a [u8]) -> Result { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: function is never used: `bit_width` [INFO] [stderr] --> src/encodings.rs:141:4 [INFO] [stderr] | [INFO] [stderr] 141 | fn bit_width(max_int: u32) -> u32 { [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: function is never used: `byte_width` [INFO] [stderr] --> src/encodings.rs:144:4 [INFO] [stderr] | [INFO] [stderr] 144 | fn byte_width(bit_width: u32) -> u32 { [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:53:45 [INFO] [stderr] | [INFO] [stderr] 53 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `MAP_KEY_VALUE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:93:3 [INFO] [stderr] | [INFO] [stderr] 93 | MAP_KEY_VALUE = 2, [INFO] [stderr] | ^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `MapKeyValue` [INFO] [stderr] [INFO] [stderr] warning: struct is never constructed: `ColumnPagesIter` [INFO] [stderr] --> src/lib.rs:65:8 [INFO] [stderr] | [INFO] [stderr] 65 | struct ColumnPagesIter<'a> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/lib.rs:72:12 [INFO] [stderr] | [INFO] [stderr] 72 | pub fn new(file: &'a mut BufReader, file_meta: &'a FileMetaData, column: &str) -> ColumnPagesIter<'a> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: variant `TIME_MILLIS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:121:3 [INFO] [stderr] | [INFO] [stderr] 121 | TIME_MILLIS = 7, [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimeMillis` [INFO] [stderr] [INFO] [stderr] warning: variant `TIME_MICROS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:126:3 [INFO] [stderr] | [INFO] [stderr] 126 | TIME_MICROS = 8, [INFO] [stderr] | ^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimeMicros` [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_page_header` [INFO] [stderr] --> src/lib.rs:86:8 [INFO] [stderr] | [INFO] [stderr] 86 | fn read_page_header(&mut self, file: &mut Take) -> PageHeader { [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `iter` [INFO] [stderr] --> src/lib.rs:96:8 [INFO] [stderr] | [INFO] [stderr] 96 | fn iter(&'a mut self) -> impl 'a + Iterator { [INFO] [stderr] | ^^^^ [INFO] [stderr] [INFO] [stderr] warning: 150 warnings emitted [INFO] [stderr] [INFO] [stderr] warning: variant `TIMESTAMP_MILLIS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:131:3 [INFO] [stderr] | [INFO] [stderr] 131 | TIMESTAMP_MILLIS = 9, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimestampMillis` [INFO] [stderr] [INFO] [stderr] warning: variant `TIMESTAMP_MICROS` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:136:3 [INFO] [stderr] | [INFO] [stderr] 136 | TIMESTAMP_MICROS = 10, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `TimestampMicros` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_8` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:144:3 [INFO] [stderr] | [INFO] [stderr] 144 | UINT_8 = 11, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Uint8` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_16` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:145:3 [INFO] [stderr] | [INFO] [stderr] 145 | UINT_16 = 12, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint16` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_32` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:146:3 [INFO] [stderr] | [INFO] [stderr] 146 | UINT_32 = 13, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint32` [INFO] [stderr] [INFO] [stderr] warning: variant `UINT_64` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:147:3 [INFO] [stderr] | [INFO] [stderr] 147 | UINT_64 = 14, [INFO] [stderr] | ^^^^^^^ help: convert the identifier to upper camel case: `Uint64` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_8` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:155:3 [INFO] [stderr] | [INFO] [stderr] 155 | INT_8 = 15, [INFO] [stderr] | ^^^^^ help: convert the identifier to upper camel case: `Int8` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_16` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:156:3 [INFO] [stderr] | [INFO] [stderr] 156 | INT_16 = 16, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int16` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_32` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:157:3 [INFO] [stderr] | [INFO] [stderr] 157 | INT_32 = 17, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int32` [INFO] [stderr] [INFO] [stderr] warning: variant `INT_64` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:158:3 [INFO] [stderr] | [INFO] [stderr] 158 | INT_64 = 18, [INFO] [stderr] | ^^^^^^ help: convert the identifier to upper camel case: `Int64` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:181:52 [INFO] [stderr] | [INFO] [stderr] 181 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:184:45 [INFO] [stderr] | [INFO] [stderr] 184 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:240:52 [INFO] [stderr] | [INFO] [stderr] 240 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:243:45 [INFO] [stderr] | [INFO] [stderr] 243 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `PLAIN_DICTIONARY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:286:3 [INFO] [stderr] | [INFO] [stderr] 286 | PLAIN_DICTIONARY = 2, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `PlainDictionary` [INFO] [stderr] [INFO] [stderr] warning: variant `BIT_PACKED` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:292:3 [INFO] [stderr] | [INFO] [stderr] 292 | BIT_PACKED = 4, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `BitPacked` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_BINARY_PACKED` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:295:3 [INFO] [stderr] | [INFO] [stderr] 295 | DELTA_BINARY_PACKED = 5, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaBinaryPacked` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_LENGTH_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:298:3 [INFO] [stderr] | [INFO] [stderr] 298 | DELTA_LENGTH_BYTE_ARRAY = 6, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaLengthByteArray` [INFO] [stderr] [INFO] [stderr] warning: variant `DELTA_BYTE_ARRAY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:301:3 [INFO] [stderr] | [INFO] [stderr] 301 | DELTA_BYTE_ARRAY = 7, [INFO] [stderr] | ^^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DeltaByteArray` [INFO] [stderr] [INFO] [stderr] warning: variant `RLE_DICTIONARY` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:303:3 [INFO] [stderr] | [INFO] [stderr] 303 | RLE_DICTIONARY = 8, [INFO] [stderr] | ^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `RleDictionary` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:307:52 [INFO] [stderr] | [INFO] [stderr] 307 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:310:45 [INFO] [stderr] | [INFO] [stderr] 310 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:358:52 [INFO] [stderr] | [INFO] [stderr] 358 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:361:45 [INFO] [stderr] | [INFO] [stderr] 361 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: variant `DATA_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:392:3 [INFO] [stderr] | [INFO] [stderr] 392 | DATA_PAGE = 0, [INFO] [stderr] | ^^^^^^^^^ help: convert the identifier to upper camel case: `DataPage` [INFO] [stderr] [INFO] [stderr] warning: variant `INDEX_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:393:3 [INFO] [stderr] | [INFO] [stderr] 393 | INDEX_PAGE = 1, [INFO] [stderr] | ^^^^^^^^^^ help: convert the identifier to upper camel case: `IndexPage` [INFO] [stderr] [INFO] [stderr] warning: variant `DICTIONARY_PAGE` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:394:3 [INFO] [stderr] | [INFO] [stderr] 394 | DICTIONARY_PAGE = 2, [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DictionaryPage` [INFO] [stderr] [INFO] [stderr] warning: variant `DATA_PAGE_V2` should have an upper camel case name [INFO] [stderr] --> src/parquet.rs:395:3 [INFO] [stderr] | [INFO] [stderr] 395 | DATA_PAGE_V2 = 3, [INFO] [stderr] | ^^^^^^^^^^^^ help: convert the identifier to upper camel case: `DataPageV2` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:399:52 [INFO] [stderr] | [INFO] [stderr] 399 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:402:45 [INFO] [stderr] | [INFO] [stderr] 402 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:438:52 [INFO] [stderr] | [INFO] [stderr] 438 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:441:45 [INFO] [stderr] | [INFO] [stderr] 441 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:510:45 [INFO] [stderr] | [INFO] [stderr] 510 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:566:52 [INFO] [stderr] | [INFO] [stderr] 566 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:648:45 [INFO] [stderr] | [INFO] [stderr] 648 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:667:52 [INFO] [stderr] | [INFO] [stderr] 667 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:693:45 [INFO] [stderr] | [INFO] [stderr] 693 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:712:52 [INFO] [stderr] | [INFO] [stderr] 712 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:738:45 [INFO] [stderr] | [INFO] [stderr] 738 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:757:52 [INFO] [stderr] | [INFO] [stderr] 757 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:783:45 [INFO] [stderr] | [INFO] [stderr] 783 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:802:52 [INFO] [stderr] | [INFO] [stderr] 802 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:828:45 [INFO] [stderr] | [INFO] [stderr] 828 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:847:52 [INFO] [stderr] | [INFO] [stderr] 847 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:873:45 [INFO] [stderr] | [INFO] [stderr] 873 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:892:52 [INFO] [stderr] | [INFO] [stderr] 892 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:923:45 [INFO] [stderr] | [INFO] [stderr] 923 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:942:52 [INFO] [stderr] | [INFO] [stderr] 942 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:979:45 [INFO] [stderr] | [INFO] [stderr] 979 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1013:52 [INFO] [stderr] | [INFO] [stderr] 1013 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1040:45 [INFO] [stderr] | [INFO] [stderr] 1040 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1059:52 [INFO] [stderr] | [INFO] [stderr] 1059 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1085:45 [INFO] [stderr] | [INFO] [stderr] 1085 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1104:52 [INFO] [stderr] | [INFO] [stderr] 1104 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1129:45 [INFO] [stderr] | [INFO] [stderr] 1129 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1184:52 [INFO] [stderr] | [INFO] [stderr] 1184 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1224:45 [INFO] [stderr] | [INFO] [stderr] 1224 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1258:52 [INFO] [stderr] | [INFO] [stderr] 1258 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1292:45 [INFO] [stderr] | [INFO] [stderr] 1292 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1326:52 [INFO] [stderr] | [INFO] [stderr] 1326 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1362:45 [INFO] [stderr] | [INFO] [stderr] 1362 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1396:52 [INFO] [stderr] | [INFO] [stderr] 1396 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1425:45 [INFO] [stderr] | [INFO] [stderr] 1425 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1444:52 [INFO] [stderr] | [INFO] [stderr] 1444 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1473:45 [INFO] [stderr] | [INFO] [stderr] 1473 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1492:52 [INFO] [stderr] | [INFO] [stderr] 1492 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1527:45 [INFO] [stderr] | [INFO] [stderr] 1527 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1652:52 [INFO] [stderr] | [INFO] [stderr] 1652 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1781:45 [INFO] [stderr] | [INFO] [stderr] 1781 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1862:52 [INFO] [stderr] | [INFO] [stderr] 1862 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:1974:45 [INFO] [stderr] | [INFO] [stderr] 1974 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2028:52 [INFO] [stderr] | [INFO] [stderr] 2028 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2068:45 [INFO] [stderr] | [INFO] [stderr] 2068 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2087:52 [INFO] [stderr] | [INFO] [stderr] 2087 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2124:45 [INFO] [stderr] | [INFO] [stderr] 2124 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2164:52 [INFO] [stderr] | [INFO] [stderr] 2164 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2232:45 [INFO] [stderr] | [INFO] [stderr] 2232 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2306:52 [INFO] [stderr] | [INFO] [stderr] 2306 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2383:45 [INFO] [stderr] | [INFO] [stderr] 2383 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2454:52 [INFO] [stderr] | [INFO] [stderr] 2454 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2529:45 [INFO] [stderr] | [INFO] [stderr] 2529 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2562:52 [INFO] [stderr] | [INFO] [stderr] 2562 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2605:45 [INFO] [stderr] | [INFO] [stderr] 2605 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2646:52 [INFO] [stderr] | [INFO] [stderr] 2646 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2686:45 [INFO] [stderr] | [INFO] [stderr] 2686 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2727:52 [INFO] [stderr] | [INFO] [stderr] 2727 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2800:45 [INFO] [stderr] | [INFO] [stderr] 2800 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:2930:52 [INFO] [stderr] | [INFO] [stderr] 2930 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3057:45 [INFO] [stderr] | [INFO] [stderr] 3057 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3120:52 [INFO] [stderr] | [INFO] [stderr] 3120 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3207:45 [INFO] [stderr] | [INFO] [stderr] 3207 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3266:52 [INFO] [stderr] | [INFO] [stderr] 3266 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3312:45 [INFO] [stderr] | [INFO] [stderr] 3312 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3331:52 [INFO] [stderr] | [INFO] [stderr] 3331 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3355:45 [INFO] [stderr] | [INFO] [stderr] 3355 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3403:52 [INFO] [stderr] | [INFO] [stderr] 3403 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3442:45 [INFO] [stderr] | [INFO] [stderr] 3442 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3483:52 [INFO] [stderr] | [INFO] [stderr] 3483 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3517:45 [INFO] [stderr] | [INFO] [stderr] 3517 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3550:52 [INFO] [stderr] | [INFO] [stderr] 3550 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3607:45 [INFO] [stderr] | [INFO] [stderr] 3607 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3685:52 [INFO] [stderr] | [INFO] [stderr] 3685 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3781:45 [INFO] [stderr] | [INFO] [stderr] 3781 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^ help: use `dyn`: `dyn TInputProtocol` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/parquet.rs:3871:52 [INFO] [stderr] | [INFO] [stderr] 3871 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn TOutputProtocol` [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:438:10 [INFO] [stderr] | [INFO] [stderr] 438 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:441:10 [INFO] [stderr] | [INFO] [stderr] 441 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:690:10 [INFO] [stderr] | [INFO] [stderr] 690 | pub fn new() -> UUIDType { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:693:10 [INFO] [stderr] | [INFO] [stderr] 693 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:712:10 [INFO] [stderr] | [INFO] [stderr] 712 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:1965:10 [INFO] [stderr] | [INFO] [stderr] 1965 | pub fn new(num_values: i32, encoding: Encoding, definition_level_encoding: Encoding, repetition_level_encoding: Encoding, statistics: F5) -> DataPageHeader where F5: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2028:10 [INFO] [stderr] | [INFO] [stderr] 2028 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2065:10 [INFO] [stderr] | [INFO] [stderr] 2065 | pub fn new() -> IndexPageHeader { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2087:10 [INFO] [stderr] | [INFO] [stderr] 2087 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2117:10 [INFO] [stderr] | [INFO] [stderr] 2117 | pub fn new(num_values: i32, encoding: Encoding, is_sorted: F3) -> DictionaryPageHeader where F3: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2164:10 [INFO] [stderr] | [INFO] [stderr] 2164 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2220:10 [INFO] [stderr] | [INFO] [stderr] 2220 | pub fn new(num_values: i32, num_nulls: i32, num_rows: i32, encoding: Encoding, definition_levels_byte_length: i32, repetition_levels_byte_length: i32, is_compressed: F7, statistics: F8) -> DataPageHeaderV2 where F7: Into>, F8: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2306:10 [INFO] [stderr] | [INFO] [stderr] 2306 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:2371:10 [INFO] [stderr] | [INFO] [stderr] 2371 | pub fn new(type_: PageType, uncompressed_page_size: i32, compressed_page_size: i32, crc: F4, data_page_header: F5, index_page_header: F6, dictionary_page_header: F7, data_page_header_v2: F8) -> PageHeader where F4: Into>, F5: Into>, F6: Into>, F7: Into>, F8: Into> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:2454:10 [INFO] [stderr] | [INFO] [stderr] 2454 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3435:10 [INFO] [stderr] | [INFO] [stderr] 3435 | pub fn new(offset: i64, compressed_page_size: i32, first_row_index: i64) -> PageLocation { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3442:10 [INFO] [stderr] | [INFO] [stderr] 3442 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3483:10 [INFO] [stderr] | [INFO] [stderr] 3483 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3512:10 [INFO] [stderr] | [INFO] [stderr] 3512 | pub fn new(page_locations: Vec) -> OffsetIndex { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3517:10 [INFO] [stderr] | [INFO] [stderr] 3517 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3550:10 [INFO] [stderr] | [INFO] [stderr] 3550 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/parquet.rs:3598:10 [INFO] [stderr] | [INFO] [stderr] 3598 | pub fn new(null_pages: Vec, min_values: Vec>, max_values: Vec>, boundary_order: BoundaryOrder, null_counts: F5) -> ColumnIndex where F5: Into>> { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_from_in_protocol` [INFO] [stderr] --> src/parquet.rs:3607:10 [INFO] [stderr] | [INFO] [stderr] 3607 | pub fn read_from_in_protocol(i_prot: &mut TInputProtocol) -> thrift::Result { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `write_to_out_protocol` [INFO] [stderr] --> src/parquet.rs:3685:10 [INFO] [stderr] | [INFO] [stderr] 3685 | pub fn write_to_out_protocol(&self, o_prot: &mut TOutputProtocol) -> thrift::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/encodings.rs:13:12 [INFO] [stderr] | [INFO] [stderr] 13 | pub fn new(max_level: u32, data: &'a [u8]) -> Result { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never read: `ptr` [INFO] [stderr] --> src/encodings.rs:53:5 [INFO] [stderr] | [INFO] [stderr] 53 | ptr: u32, [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: struct is never constructed: `BitPackingReader` [INFO] [stderr] --> src/encodings.rs:118:12 [INFO] [stderr] | [INFO] [stderr] 118 | pub struct BitPackingReader<'a> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `new` [INFO] [stderr] --> src/encodings.rs:124:8 [INFO] [stderr] | [INFO] [stderr] 124 | fn new(data: &'a [u8]) -> Result { [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: function is never used: `byte_width` [INFO] [stderr] --> src/encodings.rs:144:4 [INFO] [stderr] | [INFO] [stderr] 144 | fn byte_width(bit_width: u32) -> u32 { [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never read: `column_idx` [INFO] [stderr] --> src/lib.rs:68:5 [INFO] [stderr] | [INFO] [stderr] 68 | column_idx: usize, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: associated function is never used: `read_page_header` [INFO] [stderr] --> src/lib.rs:86:8 [INFO] [stderr] | [INFO] [stderr] 86 | fn read_page_header(&mut self, file: &mut Take) -> PageHeader { [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: 142 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.06s [INFO] [stderr] Running /opt/rustwide/target/debug/deps/rust_parquet-c0fb5c7a627ed350 [INFO] [stdout] [INFO] [stdout] running 3 tests [INFO] [stdout] test encodings::tests::bit_width_test ... ok [INFO] [stdout] test tests::column_pages_iterator ... FAILED [INFO] [stdout] test tests::can_get_metadata ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- tests::column_pages_iterator stdout ---- [INFO] [stdout] thread 'tests::column_pages_iterator' panicked at 'Failed to read parquet file: Os { code: 2, kind: NotFound, message: "No such file or directory" }', src/lib.rs:159:24 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x55f17426b3c5 - backtrace::backtrace::libunwind::trace::h07c956be65d9b461 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.46/src/backtrace/libunwind.rs:86 [INFO] [stdout] 1: 0x55f17426b3c5 - backtrace::backtrace::trace_unsynchronized::h2fdb9e4177ad4d20 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.46/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x55f17426b3c5 - std::sys_common::backtrace::_print_fmt::ha62d8426311107ac [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:78 [INFO] [stdout] 3: 0x55f17426b3c5 - ::fmt::h3ec6bdab62f1e8d9 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:59 [INFO] [stdout] 4: 0x55f17429319c - core::fmt::write::h935cb0ed4078a853 [INFO] [stdout] at src/libcore/fmt/mod.rs:1076 [INFO] [stdout] 5: 0x55f17420acd5 - std::io::Write::write_fmt::h944a31ab04b0dfe4 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/io/mod.rs:1537 [INFO] [stdout] 6: 0x55f174265901 - std::io::impls::>::write_fmt::h6bd94c41a9c566d2 [INFO] [stdout] at src/libstd/io/impls.rs:176 [INFO] [stdout] 7: 0x55f17426dbf0 - std::sys_common::backtrace::_print::h460db802d801ccf8 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:62 [INFO] [stdout] 8: 0x55f17426dbf0 - std::sys_common::backtrace::print::h399d664f56640530 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:49 [INFO] [stdout] 9: 0x55f17426dbf0 - std::panicking::default_hook::{{closure}}::hc6dfd87957c765b8 [INFO] [stdout] at src/libstd/panicking.rs:198 [INFO] [stdout] 10: 0x55f17426d8ea - std::panicking::default_hook::hfdceba6d6d1a18ae [INFO] [stdout] at src/libstd/panicking.rs:215 [INFO] [stdout] 11: 0x55f17426e227 - std::panicking::rust_panic_with_hook::hd01e282bff1b1e63 [INFO] [stdout] at src/libstd/panicking.rs:486 [INFO] [stdout] 12: 0x55f17426de2b - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:388 [INFO] [stdout] 13: 0x55f174291b31 - core::panicking::panic_fmt::habd7df443069602c [INFO] [stdout] at src/libcore/panicking.rs:101 [INFO] [stdout] 14: 0x55f174291953 - core::option::expect_none_failed::h721078758a086285 [INFO] [stdout] at src/libcore/option.rs:1272 [INFO] [stdout] 15: 0x55f1741ffb64 - core::result::Result::expect::he79a679075e97b77 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libcore/result.rs:963 [INFO] [stdout] 16: 0x55f1741f51f1 - rust_parquet::tests::column_pages_iterator::h5f3f082fef080fe0 [INFO] [stdout] at src/lib.rs:159 [INFO] [stdout] 17: 0x55f1741f518a - rust_parquet::tests::column_pages_iterator::{{closure}}::h89d09f6a3e94871e [INFO] [stdout] at src/lib.rs:158 [INFO] [stdout] 18: 0x55f1741f140e - core::ops::function::FnOnce::call_once::he5259ab6e9f868c8 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libcore/ops/function.rs:232 [INFO] [stdout] 19: 0x55f1742320c2 - as core::ops::function::FnOnce>::call_once::hd23431bd7b767a0c [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/liballoc/boxed.rs:1076 [INFO] [stdout] 20: 0x55f1742320c2 - as core::ops::function::FnOnce<()>>::call_once::h6986d2e83b783a4e [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panic.rs:318 [INFO] [stdout] 21: 0x55f1742320c2 - std::panicking::try::do_call::haee67871ebe8ee92 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panicking.rs:297 [INFO] [stdout] 22: 0x55f1742320c2 - std::panicking::try::hcba534043f17f42d [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panicking.rs:274 [INFO] [stdout] 23: 0x55f1742320c2 - std::panic::catch_unwind::h6908c2ae7517b434 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panic.rs:394 [INFO] [stdout] 24: 0x55f1742320c2 - test::run_test_in_process::h66277a63b8267865 [INFO] [stdout] at src/libtest/lib.rs:541 [INFO] [stdout] 25: 0x55f1742320c2 - test::run_test::run_test_inner::{{closure}}::h591f321b83c3f302 [INFO] [stdout] at src/libtest/lib.rs:450 [INFO] [stdout] 26: 0x55f17420a196 - std::sys_common::backtrace::__rust_begin_short_backtrace::h843e47ea29613666 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/sys_common/backtrace.rs:130 [INFO] [stdout] 27: 0x55f17420f735 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::ha6c43669df0cbe25 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/thread/mod.rs:475 [INFO] [stdout] 28: 0x55f17420f735 - as core::ops::function::FnOnce<()>>::call_once::hc86e5439e615a14a [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panic.rs:318 [INFO] [stdout] 29: 0x55f17420f735 - std::panicking::try::do_call::h4b45bcf4d5d82a80 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panicking.rs:297 [INFO] [stdout] 30: 0x55f17420f735 - std::panicking::try::h297c0c407d3f8196 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panicking.rs:274 [INFO] [stdout] 31: 0x55f17420f735 - std::panic::catch_unwind::h877baa9fbef2eafe [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panic.rs:394 [INFO] [stdout] 32: 0x55f17420f735 - std::thread::Builder::spawn_unchecked::{{closure}}::hdb000626ad29158a [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/thread/mod.rs:474 [INFO] [stdout] 33: 0x55f17420f735 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h87e786b011f05b5c [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libcore/ops/function.rs:232 [INFO] [stdout] 34: 0x55f1742744ea - as core::ops::function::FnOnce>::call_once::hfc5c0e64036d1b09 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/liballoc/boxed.rs:1076 [INFO] [stdout] 35: 0x55f1742744ea - as core::ops::function::FnOnce>::call_once::hf3d73184efc070c1 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/liballoc/boxed.rs:1076 [INFO] [stdout] 36: 0x55f1742744ea - std::sys::unix::thread::Thread::new::thread_start::hb9eb749d91dfe8e2 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:87 [INFO] [stdout] 37: 0x7f4ff087c609 - start_thread [INFO] [stdout] 38: 0x7f4ff0788103 - __clone [INFO] [stdout] 39: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::can_get_metadata stdout ---- [INFO] [stdout] thread 'tests::can_get_metadata' panicked at 'Failed to read parquet file: Os { code: 2, kind: NotFound, message: "No such file or directory" }', src/lib.rs:147:24 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x55f17426b3c5 - backtrace::backtrace::libunwind::trace::h07c956be65d9b461 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.46/src/backtrace/libunwind.rs:86 [INFO] [stdout] 1: 0x55f17426b3c5 - backtrace::backtrace::trace_unsynchronized::h2fdb9e4177ad4d20 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.46/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x55f17426b3c5 - std::sys_common::backtrace::_print_fmt::ha62d8426311107ac [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:78 [INFO] [stdout] 3: 0x55f17426b3c5 - ::fmt::h3ec6bdab62f1e8d9 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:59 [INFO] [stdout] 4: 0x55f17429319c - core::fmt::write::h935cb0ed4078a853 [INFO] [stdout] at src/libcore/fmt/mod.rs:1076 [INFO] [stdout] 5: 0x55f17420acd5 - std::io::Write::write_fmt::h944a31ab04b0dfe4 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/io/mod.rs:1537 [INFO] [stdout] 6: 0x55f174265901 - std::io::impls::>::write_fmt::h6bd94c41a9c566d2 [INFO] [stdout] at src/libstd/io/impls.rs:176 [INFO] [stdout] 7: 0x55f17426dbf0 - std::sys_common::backtrace::_print::h460db802d801ccf8 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:62 [INFO] [stdout] 8: 0x55f17426dbf0 - std::sys_common::backtrace::print::h399d664f56640530 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:49 [INFO] [stdout] 9: 0x55f17426dbf0 - std::panicking::default_hook::{{closure}}::hc6dfd87957c765b8 [INFO] [stdout] at src/libstd/panicking.rs:198 [INFO] [stdout] 10: 0x55f17426d8ea - std::panicking::default_hook::hfdceba6d6d1a18ae [INFO] [stdout] at src/libstd/panicking.rs:215 [INFO] [stdout] 11: 0x55f17426e227 - std::panicking::rust_panic_with_hook::hd01e282bff1b1e63 [INFO] [stdout] at src/libstd/panicking.rs:486 [INFO] [stdout] 12: 0x55f17426de2b - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:388 [INFO] [stdout] 13: 0x55f174291b31 - core::panicking::panic_fmt::habd7df443069602c [INFO] [stdout] at src/libcore/panicking.rs:101 [INFO] [stdout] 14: 0x55f174291953 - core::option::expect_none_failed::h721078758a086285 [INFO] [stdout] at src/libcore/option.rs:1272 [INFO] [stdout] 15: 0x55f1741ffb64 - core::result::Result::expect::he79a679075e97b77 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libcore/result.rs:963 [INFO] [stdout] 16: 0x55f1741f4e49 - rust_parquet::tests::can_get_metadata::h854d43eb27d5d3c7 [INFO] [stdout] at src/lib.rs:147 [INFO] [stdout] 17: 0x55f1741f4daa - rust_parquet::tests::can_get_metadata::{{closure}}::h9e5b077013aa8ecd [INFO] [stdout] at src/lib.rs:146 [INFO] [stdout] 18: 0x55f1741f136e - core::ops::function::FnOnce::call_once::h3b11f2fed1768dad [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libcore/ops/function.rs:232 [INFO] [stdout] 19: 0x55f1742320c2 - as core::ops::function::FnOnce>::call_once::hd23431bd7b767a0c [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/liballoc/boxed.rs:1076 [INFO] [stdout] 20: 0x55f1742320c2 - as core::ops::function::FnOnce<()>>::call_once::h6986d2e83b783a4e [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panic.rs:318 [INFO] [stdout] 21: 0x55f1742320c2 - std::panicking::try::do_call::haee67871ebe8ee92 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panicking.rs:297 [INFO] [stdout] 22: 0x55f1742320c2 - std::panicking::try::hcba534043f17f42d [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panicking.rs:274 [INFO] [stdout] 23: 0x55f1742320c2 - std::panic::catch_unwind::h6908c2ae7517b434 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panic.rs:394 [INFO] [stdout] 24: 0x55f1742320c2 - test::run_test_in_process::h66277a63b8267865 [INFO] [stdout] at src/libtest/lib.rs:541 [INFO] [stdout] 25: 0x55f1742320c2 - test::run_test::run_test_inner::{{closure}}::h591f321b83c3f302 [INFO] [stdout] at src/libtest/lib.rs:450 [INFO] [stdout] 26: 0x55f17420a196 - std::sys_common::backtrace::__rust_begin_short_backtrace::h843e47ea29613666 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/sys_common/backtrace.rs:130 [INFO] [stdout] 27: 0x55f17420f735 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::ha6c43669df0cbe25 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/thread/mod.rs:475 [INFO] [stdout] 28: 0x55f17420f735 - as core::ops::function::FnOnce<()>>::call_once::hc86e5439e615a14a [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panic.rs:318 [INFO] [stdout] 29: 0x55f17420f735 - std::panicking::try::do_call::h4b45bcf4d5d82a80 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panicking.rs:297 [INFO] [stdout] 30: 0x55f17420f735 - std::panicking::try::h297c0c407d3f8196 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panicking.rs:274 [INFO] [stdout] 31: 0x55f17420f735 - std::panic::catch_unwind::h877baa9fbef2eafe [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/panic.rs:394 [INFO] [stdout] 32: 0x55f17420f735 - std::thread::Builder::spawn_unchecked::{{closure}}::hdb000626ad29158a [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libstd/thread/mod.rs:474 [INFO] [stdout] 33: 0x55f17420f735 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h87e786b011f05b5c [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/libcore/ops/function.rs:232 [INFO] [stdout] 34: 0x55f1742744ea - as core::ops::function::FnOnce>::call_once::hfc5c0e64036d1b09 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/liballoc/boxed.rs:1076 [INFO] [stdout] 35: 0x55f1742744ea - as core::ops::function::FnOnce>::call_once::hf3d73184efc070c1 [INFO] [stdout] at /rustc/b7dc83a3f6ca9746fb3d121761c3605477b77d90/src/liballoc/boxed.rs:1076 [INFO] [stdout] 36: 0x55f1742744ea - std::sys::unix::thread::Thread::new::thread_start::hb9eb749d91dfe8e2 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:87 [INFO] [stdout] 37: 0x7f4ff087c609 - start_thread [INFO] [stdout] 38: 0x7f4ff0788103 - __clone [INFO] [stdout] 39: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] tests::can_get_metadata [INFO] [stdout] tests::column_pages_iterator [INFO] [stdout] [INFO] [stdout] test result: FAILED. 1 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] error: test failed, to rerun pass '--lib' [INFO] running `"docker" "inspect" "c2d8d950db92a59f6df80b86f21ece8dc33051ec2fd312b4ab947265f4000d3d"` [INFO] running `"docker" "rm" "-f" "c2d8d950db92a59f6df80b86f21ece8dc33051ec2fd312b4ab947265f4000d3d"` [INFO] [stdout] c2d8d950db92a59f6df80b86f21ece8dc33051ec2fd312b4ab947265f4000d3d