# rustc version rustc 1.98.0-nightly (6bdf43094 2026-06-01)
# docs.rs version docsrs 0.0.0 (f16e33f3e6ac9fc9e4413728c5dd1b2ba1c6b799 2026-05-23 )
# build log [INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "DOCS_RS=1" "-w" "/opt/rustwide/workdir" "--user" "1001:1001" "91963de652e7542308a7baa2f6cfb6cceaa606daf97723d99ece25cef374844f" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--features" "full" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--emit=invocation-specific\", \"--resource-suffix\", \"-20260601-1.98.0-nightly-6bdf43094\", \"--static-root-path\", \"/-/rustdoc.static/\", \"--cap-lints\", \"warn\", \"--extern-html-root-takes-precedence\"]" "--offline" "-Zunstable-options" "--config=doc.extern-map.registries.crates-io=\"https://docs.rs/{pkg_name}/{version}/x86_64-unknown-linux-gnu\"" "-Zrustdoc-scrape-examples" "-j6" "--target" "x86_64-unknown-linux-gnu", kill_on_drop: false }` [INFO] [stderr] warning: Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition [INFO] [stderr] (in the `chrono` dependency) [INFO] [stderr] warning: Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition [INFO] [stderr] (in the `parquet2` dependency) [INFO] [stderr] warning: Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition [INFO] [stderr] (in the `proptest` dependency) [INFO] [stderr] warning: `arrow2` (manifest) generated 3 warnings [INFO] [stderr] warning: Rustdoc did not scrape the following examples because they require dev-dependencies: arithmetics, avro_kafka, avro_read, avro_read_async, avro_write, cow, csv_read, csv_read_async, csv_read_parallel, csv_write, csv_write_parallel, extension, ffi, growable, io_odbc, ipc_file_mmap, ipc_file_read, ipc_file_write, json_read, json_write, metadata, ndjson_read, ndjson_write, orc_read, parquet_read, parquet_read_async, parquet_write, parquet_write_async [INFO] [stderr] If you want Rustdoc to scrape these examples, then add `doc-scrape-examples = true` [INFO] [stderr] to the [[example]] target configuration of at least one example. [INFO] [stderr] warning: target filter specified, but no targets matched; this is a no-op [INFO] [stderr] Documenting arrow2 v0.18.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unexpected `cfg` condition value: `nightly_build` [INFO] [stderr] --> src/lib.rs:15:13 [INFO] [stderr] | [INFO] [stderr] 15 | #![cfg_attr(feature = "nightly_build", feature(build_hasher_simple_hash_one))] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: expected values for `feature` are: `arrow`, `arrow-array`, `arrow-buffer`, `arrow-data`, `arrow-format`, `arrow-schema`, `async-stream`, `avro-schema`, `base64`, `benchmarks`, `chrono-tz`, `comfy-table`, `compute`, `compute_aggregate`, `compute_arithmetics`, `compute_arithmetics_decimal`, `compute_bitwise`, `compute_boolean`, `compute_boolean_kleene`, `compute_cast`, `compute_comparison`, `compute_concatenate`, `compute_contains`, `compute_filter`, `compute_hash`, `compute_if_then_else`, `compute_length`, `compute_like`, `compute_limit`, `compute_merge_sort`, `compute_nullif`, `compute_partition`, `compute_regex_match`, `compute_sort`, and `compute_substring` and 62 more [INFO] [stderr] = help: consider adding `nightly_build` as a feature in `Cargo.toml` [INFO] [stderr] = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration [INFO] [stderr] = note: `#[warn(unexpected_cfgs)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/array/mod.rs:700:16 [INFO] [stderr] | [INFO] [stderr] 700 | impl<'a> AsRef<(dyn Array + 'a)> for dyn Array { [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 700 - impl<'a> AsRef<(dyn Array + 'a)> for dyn Array { [INFO] [stderr] 700 + impl<'a> AsRef<dyn Array + 'a> for dyn Array { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around closure body [INFO] [stderr] --> src/compute/cast/primitive_to.rs:368:53 [INFO] [stderr] | [INFO] [stderr] 368 | std::cmp::Ordering::Less => unary(from, |x| (x / (from_size / to_size)), to_type), [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 368 - std::cmp::Ordering::Less => unary(from, |x| (x / (from_size / to_size)), to_type), [INFO] [stderr] 368 + std::cmp::Ordering::Less => unary(from, |x| x / (from_size / to_size) , to_type), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around closure body [INFO] [stderr] --> src/compute/cast/primitive_to.rs:370:56 [INFO] [stderr] | [INFO] [stderr] 370 | std::cmp::Ordering::Greater => unary(from, |x| (x * (to_size / from_size)), to_type), [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 370 - std::cmp::Ordering::Greater => unary(from, |x| (x * (to_size / from_size)), to_type), [INFO] [stderr] 370 + std::cmp::Ordering::Greater => unary(from, |x| x * (to_size / from_size) , to_type), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around closure body [INFO] [stderr] --> src/compute/cast/primitive_to.rs:389:21 [INFO] [stderr] | [INFO] [stderr] 389 | unary(from, |x| (x as i64 * divisor), DataType::Time64(to_unit)) [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 389 - unary(from, |x| (x as i64 * divisor), DataType::Time64(to_unit)) [INFO] [stderr] 389 + unary(from, |x| x as i64 * divisor , DataType::Time64(to_unit)) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around closure body [INFO] [stderr] --> src/compute/cast/primitive_to.rs:416:25 [INFO] [stderr] | [INFO] [stderr] 416 | unary(from, |x| (x / (from_size / to_size)), to_type) [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 416 - unary(from, |x| (x / (from_size / to_size)), to_type) [INFO] [stderr] 416 + unary(from, |x| x / (from_size / to_size) , to_type) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around closure body [INFO] [stderr] --> src/compute/cast/primitive_to.rs:418:25 [INFO] [stderr] | [INFO] [stderr] 418 | unary(from, |x| (x * (to_size / from_size)), to_type) [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 418 - unary(from, |x| (x * (to_size / from_size)), to_type) [INFO] [stderr] 418 + unary(from, |x| x * (to_size / from_size) , to_type) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around closure body [INFO] [stderr] --> src/compute/comparison/mod.rs:628:68 [INFO] [stderr] | [INFO] [stderr] 628 | ... |lhs, rhs| binary(lhs, rhs, |lhs, rhs| (lhs & !rhs)), [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 628 - |lhs, rhs| binary(lhs, rhs, |lhs, rhs| (lhs & !rhs)), [INFO] [stderr] 628 + |lhs, rhs| binary(lhs, rhs, |lhs, rhs| lhs & !rhs), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unexpected `cfg` condition value: `retpoline` [INFO] [stderr] --> src/compute/hash.rs:32:1 [INFO] [stderr] | [INFO] [stderr] 32 | #[multiversion(targets("x86_64+aes+sse3+ssse3+avx+avx2"))] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: expected values for `target_feature` are: `10e60`, `2e3`, `32s`, `3e3r1`, `3e3r2`, `3e3r3`, `3e7`, `7e10`, `a`, `aclass`, `addsubiw`, `adx`, `aes`, `allows-misaligned-mem-access`, `altivec`, `alu32`, `amx-avx512`, `amx-bf16`, `amx-complex`, `amx-fp16`, `amx-fp8`, `amx-int8`, `amx-movrs`, `amx-tf32`, `amx-tile`, `apxf`, `atomics`, `audio`, `avx`, `avx10.1`, `avx10.2`, `avx2`, `avx512bf16`, `avx512bitalg`, and `avx512bw` and 452 more [INFO] [stderr] = note: using a cfg inside a attribute macro will use the cfgs from the destination crate and not the ones from the defining crate [INFO] [stderr] = help: try referring to `multiversion` crate for guidance on how handle this unexpected cfg [INFO] [stderr] = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration [INFO] [stderr] = note: this warning originates in the attribute macro `multiversion` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unexpected `cfg` condition value: `retpoline-indirect-branches` [INFO] [stderr] --> src/compute/hash.rs:32:1 [INFO] [stderr] | [INFO] [stderr] 32 | #[multiversion(targets("x86_64+aes+sse3+ssse3+avx+avx2"))] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: expected values for `target_feature` are: `10e60`, `2e3`, `32s`, `3e3r1`, `3e3r2`, `3e3r3`, `3e7`, `7e10`, `a`, `aclass`, `addsubiw`, `adx`, `aes`, `allows-misaligned-mem-access`, `altivec`, `alu32`, `amx-avx512`, `amx-bf16`, `amx-complex`, `amx-fp16`, `amx-fp8`, `amx-int8`, `amx-movrs`, `amx-tf32`, `amx-tile`, `apxf`, `atomics`, `audio`, `avx`, `avx10.1`, `avx10.2`, `avx2`, `avx512bf16`, `avx512bitalg`, and `avx512bw` and 452 more [INFO] [stderr] = note: using a cfg inside a attribute macro will use the cfgs from the destination crate and not the ones from the defining crate [INFO] [stderr] = help: try referring to `multiversion` crate for guidance on how handle this unexpected cfg [INFO] [stderr] = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration [INFO] [stderr] = note: this warning originates in the attribute macro `multiversion` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unexpected `cfg` condition value: `retpoline-indirect-calls` [INFO] [stderr] --> src/compute/hash.rs:32:1 [INFO] [stderr] | [INFO] [stderr] 32 | #[multiversion(targets("x86_64+aes+sse3+ssse3+avx+avx2"))] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: expected values for `target_feature` are: `10e60`, `2e3`, `32s`, `3e3r1`, `3e3r2`, `3e3r3`, `3e7`, `7e10`, `a`, `aclass`, `addsubiw`, `adx`, `aes`, `allows-misaligned-mem-access`, `altivec`, `alu32`, `amx-avx512`, `amx-bf16`, `amx-complex`, `amx-fp16`, `amx-fp8`, `amx-int8`, `amx-movrs`, `amx-tf32`, `amx-tile`, `apxf`, `atomics`, `audio`, `avx`, `avx10.1`, `avx10.2`, `avx2`, `avx512bf16`, `avx512bitalg`, and `avx512bw` and 452 more [INFO] [stderr] = note: using a cfg inside a attribute macro will use the cfgs from the destination crate and not the ones from the defining crate [INFO] [stderr] = help: try referring to `multiversion` crate for guidance on how handle this unexpected cfg [INFO] [stderr] = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration [INFO] [stderr] = note: this warning originates in the attribute macro `multiversion` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unexpected `cfg` condition value: `nightly_build` [INFO] [stderr] --> src/compute/sort/row/interner.rs:55:15 [INFO] [stderr] | [INFO] [stderr] 55 | #[cfg(feature = "nightly_build")] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: expected values for `feature` are: `arrow`, `arrow-array`, `arrow-buffer`, `arrow-data`, `arrow-format`, `arrow-schema`, `async-stream`, `avro-schema`, `base64`, `benchmarks`, `chrono-tz`, `comfy-table`, `compute`, `compute_aggregate`, `compute_arithmetics`, `compute_arithmetics_decimal`, `compute_bitwise`, `compute_boolean`, `compute_boolean_kleene`, `compute_cast`, `compute_comparison`, `compute_concatenate`, `compute_contains`, `compute_filter`, `compute_hash`, `compute_if_then_else`, `compute_length`, `compute_like`, `compute_limit`, `compute_merge_sort`, `compute_nullif`, `compute_partition`, `compute_regex_match`, `compute_sort`, and `compute_substring` and 62 more [INFO] [stderr] = help: consider adding `nightly_build` as a feature in `Cargo.toml` [INFO] [stderr] = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration [INFO] [stderr] [INFO] [stderr] warning: unexpected `cfg` condition value: `nightly_build` [INFO] [stderr] --> src/compute/sort/row/interner.rs:59:19 [INFO] [stderr] | [INFO] [stderr] 59 | #[cfg(not(feature = "nightly_build"))] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: expected values for `feature` are: `arrow`, `arrow-array`, `arrow-buffer`, `arrow-data`, `arrow-format`, `arrow-schema`, `async-stream`, `avro-schema`, `base64`, `benchmarks`, `chrono-tz`, `comfy-table`, `compute`, `compute_aggregate`, `compute_arithmetics`, `compute_arithmetics_decimal`, `compute_bitwise`, `compute_boolean`, `compute_boolean_kleene`, `compute_cast`, `compute_comparison`, `compute_concatenate`, `compute_contains`, `compute_filter`, `compute_hash`, `compute_if_then_else`, `compute_length`, `compute_like`, `compute_limit`, `compute_merge_sort`, `compute_nullif`, `compute_partition`, `compute_regex_match`, `compute_sort`, and `compute_substring` and 62 more [INFO] [stderr] = help: consider adding `nightly_build` as a feature in `Cargo.toml` [INFO] [stderr] = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around closure body [INFO] [stderr] --> src/io/parquet/write/nested/def.rs:44:26 [INFO] [stderr] | [INFO] [stderr] 44 | .map(|x| (x as u32)) [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 44 - .map(|x| (x as u32)) [INFO] [stderr] 44 + .map(|x| x as u32 ) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `V::IterValue` [INFO] [stderr] --> src/array/dictionary/mod.rs:247:51 [INFO] [stderr] | [INFO] [stderr] 247 | /// Returns an iterator over the the values [`V::IterValue`]. [INFO] [stderr] | ^^^^^^^^^^^^ no item named `V` in scope [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `Buffer` [INFO] [stderr] --> src/array/list/mod.rs:175:23 [INFO] [stderr] | [INFO] [stderr] 175 | /// The offsets [`Buffer`]. [INFO] [stderr] | ^^^^^^ no item named `Buffer` in scope [INFO] [stderr] | [INFO] [stderr] = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]` [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `crate::datatypes::PhysicalType::Primitive(T::PRIMITIVE)` [INFO] [stderr] --> src/array/primitive/mutable.rs:65:82 [INFO] [stderr] | [INFO] [stderr] 65 | ...icalType`] is not equal to [`crate::datatypes::PhysicalType::Primitive(T::PRIMITIVE)`] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the enum `PhysicalType` has no variant or associated item named `Primitive(T` [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `PhysicalType::Primitive(T::PRIMITIVE)` [INFO] [stderr] --> src/array/primitive/mod.rs:85:64 [INFO] [stderr] | [INFO] [stderr] 85 | /// * The `data_type`'s [`PhysicalType`] is not equal to [`PhysicalType::Primitive(T::PRIMITIVE)`] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the enum `PhysicalType` has no variant or associated item named `Primitive(T` [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `PhysicalType::Primitive(T::PRIMITIVE)` [INFO] [stderr] --> src/array/primitive/mod.rs:115:73 [INFO] [stderr] | [INFO] [stderr] 115 | /// Panics iff the `data_type`'s [`PhysicalType`] is not equal to [`PhysicalType::Primitive(T::PRIMITIVE)`] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the enum `PhysicalType` has no variant or associated item named `Primitive(T` [INFO] [stderr] [INFO] [stderr] warning: public documentation for `ArrayValuesIter` links to private item `ArrayAccessor` [INFO] [stderr] --> src/array/iterator.rs:19:32 [INFO] [stderr] | [INFO] [stderr] 19 | /// Iterator of values of an [`ArrayAccessor`]. [INFO] [stderr] | ^^^^^^^^^^^^^ this item is private [INFO] [stderr] | [INFO] [stderr] = note: this link will resolve properly if you pass `--document-private-items` [INFO] [stderr] = note: `#[warn(rustdoc::private_intra_doc_links)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `ArrayData` [INFO] [stderr] --> src/array/mod.rs:406:39 [INFO] [stderr] | [INFO] [stderr] 406 | /// Convert this [`Array`] into [`ArrayData`] [INFO] [stderr] | ^^^^^^^^^ no item named `ArrayData` in scope [INFO] [stderr] | [INFO] [stderr] = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]` [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `ArrayData` [INFO] [stderr] --> src/array/mod.rs:409:38 [INFO] [stderr] | [INFO] [stderr] 409 | /// Create this [`Array`] from [`ArrayData`] [INFO] [stderr] | ^^^^^^^^^ no item named `ArrayData` in scope [INFO] [stderr] | [INFO] [stderr] = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]` [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `arrow::row` [INFO] [stderr] --> src/compute/sort/row/mod.rs:20:44 [INFO] [stderr] | [INFO] [stderr] 20 | //! **This module is an arrow2 version of [arrow::row]:[https://docs.rs/arrow/latest/arrow/row/index.html]** [INFO] [stderr] | ^^^^^^^^^^ no item named `arrow` in scope [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `DataType::Time32(TimeUnit::Millisecond)` [INFO] [stderr] --> src/io/csv/utils.rs:50:39 [INFO] [stderr] | [INFO] [stderr] 50 | /// * parsable to time is mapped to [`DataType::Time32(TimeUnit::Millisecond)`] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the enum `DataType` has no variant or associated item named `Time32(TimeUnit` [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `infer_records_schema` [INFO] [stderr] --> src/io/json/read/deserialize.rs:644:7 [INFO] [stderr] | [INFO] [stderr] 644 | /// [`infer_records_schema`]. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no item named `infer_records_schema` in scope [INFO] [stderr] | [INFO] [stderr] = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]` [INFO] [stderr] [INFO] [stderr] warning: unresolved link to `Some(StreamState::Waiting)` [INFO] [stderr] --> src/io/ipc/read/stream.rs:67:7 [INFO] [stderr] | [INFO] [stderr] 67 | /// [`Some(StreamState::Waiting)`], which means that the stream is still "live", it [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^ no item named `Some(StreamState` in scope [INFO] [stderr] [INFO] [stderr] warning: unclosed HTML tag `u8` [INFO] [stderr] --> src/bitmap/bitmap_ops.rs:11:19 [INFO] [stderr] | [INFO] [stderr] 11 | /// Creates a [Vec<u8>] from an [`Iterator`] of [`BitChunk`]. [INFO] [stderr] | ^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(rustdoc::invalid_html_tags)]` on by default [INFO] [stderr] help: try marking as source code [INFO] [stderr] | [INFO] [stderr] 11 | /// Creates a [`Vec<u8>`] from an [`Iterator`] of [`BitChunk`]. [INFO] [stderr] | + + [INFO] [stderr] [INFO] [stderr] warning: redundant explicit link target [INFO] [stderr] --> src/scalar/mod.rs:1:85 [INFO] [stderr] | [INFO] [stderr] 1 | //! contains the [`Scalar`] trait object representing individual items of [`Array`](crate::array::Array)s, [INFO] [stderr] | ------- ^^^^^^^^^^^^^^^^^^^ explicit target is redundant [INFO] [stderr] | | [INFO] [stderr] | because label contains path that resolves to same destination [INFO] [stderr] | [INFO] [stderr] = note: when a link's destination is not specified, [INFO] [stderr] the label is used to resolve intra-doc links [INFO] [stderr] = note: `#[warn(rustdoc::redundant_explicit_links)]` on by default [INFO] [stderr] help: remove explicit link target [INFO] [stderr] | [INFO] [stderr] 1 - //! contains the [`Scalar`] trait object representing individual items of [`Array`](crate::array::Array)s, [INFO] [stderr] 1 + //! contains the [`Scalar`] trait object representing individual items of [`Array`]s, [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: redundant explicit link target [INFO] [stderr] --> src/compute/arithmetics/mod.rs:1:61 [INFO] [stderr] | [INFO] [stderr] 1 | //! Defines basic arithmetic kernels for [`PrimitiveArray`](crate::array::PrimitiveArray)s. [INFO] [stderr] | ---------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ explicit target is redundant [INFO] [stderr] | | [INFO] [stderr] | because label contains path that resolves to same destination [INFO] [stderr] | [INFO] [stderr] = note: when a link's destination is not specified, [INFO] [stderr] the label is used to resolve intra-doc links [INFO] [stderr] help: remove explicit link target [INFO] [stderr] | [INFO] [stderr] 1 - //! Defines basic arithmetic kernels for [`PrimitiveArray`](crate::array::PrimitiveArray)s. [INFO] [stderr] 1 + //! Defines basic arithmetic kernels for [`PrimitiveArray`]s. [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: redundant explicit link target [INFO] [stderr] --> src/compute/arithmetics/mod.rs:4:40 [INFO] [stderr] | [INFO] [stderr] 4 | //! be performed on [`PrimitiveArray`](crate::array::PrimitiveArray). [INFO] [stderr] | ---------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ explicit target is redundant [INFO] [stderr] | | [INFO] [stderr] | because label contains path that resolves to same destination [INFO] [stderr] | [INFO] [stderr] = note: when a link's destination is not specified, [INFO] [stderr] the label is used to resolve intra-doc links [INFO] [stderr] help: remove explicit link target [INFO] [stderr] | [INFO] [stderr] 4 - //! be performed on [`PrimitiveArray`](crate::array::PrimitiveArray). [INFO] [stderr] 4 + //! be performed on [`PrimitiveArray`]. [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: this URL is not a hyperlink [INFO] [stderr] --> src/compute/sort/row/mod.rs:20:56 [INFO] [stderr] | [INFO] [stderr] 20 | //! **This module is an arrow2 version of [arrow::row]:[https://docs.rs/arrow/latest/arrow/row/index.html]** [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: bare URLs are not automatically turned into clickable links [INFO] [stderr] = note: `#[warn(rustdoc::bare_urls)]` on by default [INFO] [stderr] help: use an automatic link instead [INFO] [stderr] | [INFO] [stderr] 20 - //! **This module is an arrow2 version of [arrow::row]:[https://docs.rs/arrow/latest/arrow/row/index.html]** [INFO] [stderr] 20 + //! **This module is an arrow2 version of [arrow::row]:<https://docs.rs/arrow/latest/arrow/row/index.html>** [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unclosed HTML tag `O` [INFO] [stderr] --> src/compute/substring.rs:27:24 [INFO] [stderr] | [INFO] [stderr] 27 | /// Returns a Utf8Array<O> with a substring starting from `start` and with optional length `length` of each of the elements in `array`. [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] help: try marking as source code [INFO] [stderr] | [INFO] [stderr] 27 | /// Returns a `Utf8Array<O>` with a substring starting from `start` and with optional length `length` of each of the elements in `array`. [INFO] [stderr] | + + [INFO] [stderr] [INFO] [stderr] warning: unclosed HTML tag `O` [INFO] [stderr] --> src/compute/substring.rs:77:26 [INFO] [stderr] | [INFO] [stderr] 77 | /// Returns a BinaryArray<O> with a substring starting from `start` and with optional length `length` of each of the elements in `ar... [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] help: try marking as source code [INFO] [stderr] | [INFO] [stderr] 77 | /// Returns a `BinaryArray<O>` with a substring starting from `start` and with optional length `length` of each of the elements in `array`. [INFO] [stderr] | + + [INFO] [stderr] [INFO] [stderr] warning: redundant explicit link target [INFO] [stderr] --> src/io/ipc/read/mod.rs:3:59 [INFO] [stderr] | [INFO] [stderr] 3 | //! The two important structs here are the [`FileReader`](reader::FileReader), [INFO] [stderr] | ------------ ^^^^^^^^^^^^^^^^^^ explicit target is redundant [INFO] [stderr] | | [INFO] [stderr] | because label contains path that resolves to same destination [INFO] [stderr] | [INFO] [stderr] = note: when a link's destination is not specified, [INFO] [stderr] the label is used to resolve intra-doc links [INFO] [stderr] help: remove explicit link target [INFO] [stderr] | [INFO] [stderr] 3 - //! The two important structs here are the [`FileReader`](reader::FileReader), [INFO] [stderr] 3 + //! The two important structs here are the [`FileReader`], [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: redundant explicit link target [INFO] [stderr] --> src/io/ipc/read/mod.rs:5:22 [INFO] [stderr] | [INFO] [stderr] 5 | //! [`StreamReader`](stream::StreamReader), which only supports reading [INFO] [stderr] | -------------- ^^^^^^^^^^^^^^^^^^^^ explicit target is redundant [INFO] [stderr] | | [INFO] [stderr] | because label contains path that resolves to same destination [INFO] [stderr] | [INFO] [stderr] = note: when a link's destination is not specified, [INFO] [stderr] the label is used to resolve intra-doc links [INFO] [stderr] help: remove explicit link target [INFO] [stderr] | [INFO] [stderr] 5 - //! [`StreamReader`](stream::StreamReader), which only supports reading [INFO] [stderr] 5 + //! [`StreamReader`], which only supports reading [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: redundant explicit link target [INFO] [stderr] --> src/ffi/mod.rs:1:58 [INFO] [stderr] | [INFO] [stderr] 1 | //! contains FFI bindings to import and export [`Array`](crate::array::Array) via [INFO] [stderr] | ------- ^^^^^^^^^^^^^^^^^^^ explicit target is redundant [INFO] [stderr] | | [INFO] [stderr] | because label contains path that resolves to same destination [INFO] [stderr] | [INFO] [stderr] = note: when a link's destination is not specified, [INFO] [stderr] the label is used to resolve intra-doc links [INFO] [stderr] help: remove explicit link target [INFO] [stderr] | [INFO] [stderr] 1 - //! contains FFI bindings to import and export [`Array`](crate::array::Array) via [INFO] [stderr] 1 + //! contains FFI bindings to import and export [`Array`] via [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `arrow2` (lib doc) generated 36 warnings (run `cargo fix --lib -p arrow2` to apply 9 suggestions) [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 4.78s [INFO] [stderr] Generated /opt/rustwide/target/x86_64-unknown-linux-gnu/doc/arrow2/index.html [INFO] running `Command { std: "docker" "inspect" "91963de652e7542308a7baa2f6cfb6cceaa606daf97723d99ece25cef374844f", kill_on_drop: false }`