[INFO] crate nom-sql 0.0.4 is already in cache [INFO] extracting crate nom-sql 0.0.4 into work/ex/pr-59199/sources/master#bc44841ad2a2ad5f6c5e67b9e35ed8e7e71d4dc7/reg/nom-sql/0.0.4 [INFO] extracting crate nom-sql 0.0.4 into work/ex/pr-59199/sources/try#68fcf881bd1e4dbfc21e22f8c7a56b8a5d8e8f7b/reg/nom-sql/0.0.4 [INFO] validating manifest of nom-sql-0.0.4 on toolchain master#bc44841ad2a2ad5f6c5e67b9e35ed8e7e71d4dc7 [INFO] running `"/mnt/crater-raid/crater/work/local/cargo-home/bin/cargo" "+bc44841ad2a2ad5f6c5e67b9e35ed8e7e71d4dc7-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of nom-sql-0.0.4 on toolchain try#68fcf881bd1e4dbfc21e22f8c7a56b8a5d8e8f7b [INFO] running `"/mnt/crater-raid/crater/work/local/cargo-home/bin/cargo" "+68fcf881bd1e4dbfc21e22f8c7a56b8a5d8e8f7b-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing nom-sql-0.0.4 [INFO] finished frobbing nom-sql-0.0.4 [INFO] frobbed toml for nom-sql-0.0.4 written to work/ex/pr-59199/sources/master#bc44841ad2a2ad5f6c5e67b9e35ed8e7e71d4dc7/reg/nom-sql/0.0.4/Cargo.toml [INFO] started frobbing nom-sql-0.0.4 [INFO] finished frobbing nom-sql-0.0.4 [INFO] frobbed toml for nom-sql-0.0.4 written to work/ex/pr-59199/sources/try#68fcf881bd1e4dbfc21e22f8c7a56b8a5d8e8f7b/reg/nom-sql/0.0.4/Cargo.toml [INFO] running `"/mnt/crater-raid/crater/work/local/cargo-home/bin/cargo" "+bc44841ad2a2ad5f6c5e67b9e35ed8e7e71d4dc7-alt" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/crater-raid/crater/work/local/cargo-home/bin/cargo" "+68fcf881bd1e4dbfc21e22f8c7a56b8a5d8e8f7b-alt" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/crater-raid/crater/work/local/cargo-home/bin/cargo" "+bc44841ad2a2ad5f6c5e67b9e35ed8e7e71d4dc7-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/crater-raid/crater/work/local/cargo-home/bin/cargo" "+68fcf881bd1e4dbfc21e22f8c7a56b8a5d8e8f7b-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] checking nom-sql-0.0.4 against try#68fcf881bd1e4dbfc21e22f8c7a56b8a5d8e8f7b for pr-59199 [INFO] running `"docker" "create" "-v" "/mnt/crater-raid/crater/work/local/target-dirs/pr-59199/worker-5/try#68fcf881bd1e4dbfc21e22f8c7a56b8a5d8e8f7b:/opt/crater/target:rw,Z" "-v" "/mnt/crater-raid/crater/work/ex/pr-59199/sources/try#68fcf881bd1e4dbfc21e22f8c7a56b8a5d8e8f7b/reg/nom-sql/0.0.4:/opt/crater/workdir:ro,Z" "-v" "/mnt/crater-raid/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/crater-raid/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+68fcf881bd1e4dbfc21e22f8c7a56b8a5d8e8f7b-alt" "check" "--frozen" "--all" "--all-targets"` [INFO] [stdout] 5ca7a0047ef51870a3c3419f0616e12385a70ced1c3a06a93ada6d085f221e03 [INFO] running `"docker" "start" "-a" "5ca7a0047ef51870a3c3419f0616e12385a70ced1c3a06a93ada6d085f221e03"` [INFO] [stderr] Checking nom-sql v0.0.4 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/keywords.rs:151:1 [INFO] [stderr] | [INFO] [stderr] 151 | /// Matches any SQL reserved keyword [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 152 | / named!(pub sql_keyword<&[u8], &[u8]>, [INFO] [stderr] 153 | | complete!(do_parse!( [INFO] [stderr] 154 | | kw: alt_complete!( [INFO] [stderr] 155 | | keyword_a_to_c [INFO] [stderr] ... | [INFO] [stderr] 160 | | )) [INFO] [stderr] 161 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_doc_comments)] on by default [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/arithmetic.rs:99:1 [INFO] [stderr] | [INFO] [stderr] 99 | / /// Parse standard math operators. [INFO] [stderr] 100 | | /// TODO(malte): this doesn't currently observe operator precedence. [INFO] [stderr] | |____________________________________________________________________^ [INFO] [stderr] 101 | / named!(pub arithmetic_operator<&[u8], ArithmeticOperator>, [INFO] [stderr] 102 | | alt_complete!( [INFO] [stderr] 103 | | map!(tag!("+"), |_| ArithmeticOperator::Add) [INFO] [stderr] 104 | | | map!(tag!("-"), |_| ArithmeticOperator::Subtract) [INFO] [stderr] ... | [INFO] [stderr] 107 | | ) [INFO] [stderr] 108 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/arithmetic.rs:110:1 [INFO] [stderr] | [INFO] [stderr] 110 | /// Base case for nested arithmetic expressions: column name or literal. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 111 | / named!(pub arithmetic_base<&[u8], ArithmeticBase>, [INFO] [stderr] 112 | | alt_complete!( [INFO] [stderr] 113 | | map!(integer_literal, |il| ArithmeticBase::Scalar(il)) [INFO] [stderr] 114 | | | map!(column_identifier_no_alias, |ci| ArithmeticBase::Column(ci)) [INFO] [stderr] 115 | | ) [INFO] [stderr] 116 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/arithmetic.rs:118:1 [INFO] [stderr] | [INFO] [stderr] 118 | / /// Parse simple arithmetic expressions combining literals, and columns and literals. [INFO] [stderr] 119 | | /// TODO(malte): this doesn't currently support nested expressions. [INFO] [stderr] | |___________________________________________________________________^ [INFO] [stderr] 120 | / named!(pub arithmetic_expression<&[u8], ArithmeticExpression>, [INFO] [stderr] 121 | | complete!(do_parse!( [INFO] [stderr] 122 | | left: arithmetic_cast >> [INFO] [stderr] 123 | | opt_multispace >> [INFO] [stderr] ... | [INFO] [stderr] 138 | | )) [INFO] [stderr] 139 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:333:1 [INFO] [stderr] | [INFO] [stderr] 333 | /// A SQL type specifier. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 334 | / named!(pub type_identifier<&[u8], SqlType>, [INFO] [stderr] 335 | | alt_complete!( [INFO] [stderr] 336 | | do_parse!( [INFO] [stderr] 337 | | tag_no_case!("bool") >> [INFO] [stderr] ... | [INFO] [stderr] 480 | | ) [INFO] [stderr] 481 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:483:1 [INFO] [stderr] | [INFO] [stderr] 483 | / /// Parses the arguments for an agregation function, and also returns whether the distinct flag is [INFO] [stderr] 484 | | /// present. [INFO] [stderr] | |____________^ [INFO] [stderr] 485 | / named!(pub function_arguments<&[u8], (Column, bool)>, [INFO] [stderr] 486 | | do_parse!( [INFO] [stderr] 487 | | distinct: opt!(do_parse!( [INFO] [stderr] 488 | | tag_no_case!("distinct") >> [INFO] [stderr] ... | [INFO] [stderr] 494 | | ) [INFO] [stderr] 495 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:559:1 [INFO] [stderr] | [INFO] [stderr] 559 | /// Parses a SQL column identifier in the table.column format [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 560 | / named!(pub column_identifier_no_alias<&[u8], Column>, [INFO] [stderr] 561 | | alt_complete!( [INFO] [stderr] 562 | | do_parse!( [INFO] [stderr] 563 | | function: column_function >> [INFO] [stderr] ... | [INFO] [stderr] 590 | | ) [INFO] [stderr] 591 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:593:1 [INFO] [stderr] | [INFO] [stderr] 593 | /// Parses a SQL column identifier in the table.column format [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 594 | / named!(pub column_identifier<&[u8], Column>, [INFO] [stderr] 595 | | alt_complete!( [INFO] [stderr] 596 | | do_parse!( [INFO] [stderr] 597 | | function: column_function >> [INFO] [stderr] ... | [INFO] [stderr] 635 | | ) [INFO] [stderr] 636 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:638:1 [INFO] [stderr] | [INFO] [stderr] 638 | /// Parses a SQL identifier (alphanumeric and "_"). [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 639 | / named!(pub sql_identifier<&[u8], &[u8]>, [INFO] [stderr] 640 | | alt_complete!( [INFO] [stderr] 641 | | do_parse!( [INFO] [stderr] 642 | | not!(peek!(sql_keyword)) >> [INFO] [stderr] ... | [INFO] [stderr] 648 | | ) [INFO] [stderr] 649 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:651:1 [INFO] [stderr] | [INFO] [stderr] 651 | /// Parse an unsigned integer. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 652 | / named!(pub unsigned_number<&[u8], u64>, [INFO] [stderr] 653 | | map_res!( [INFO] [stderr] 654 | | map_res!(digit, str::from_utf8), [INFO] [stderr] 655 | | FromStr::from_str [INFO] [stderr] 656 | | ) [INFO] [stderr] 657 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:659:1 [INFO] [stderr] | [INFO] [stderr] 659 | /// Parse a terminator that ends a SQL statement. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 660 | / named!(pub statement_terminator, [INFO] [stderr] 661 | | delimited!( [INFO] [stderr] 662 | | opt_multispace, [INFO] [stderr] 663 | | alt_complete!(tag!(";") | line_ending | eof!()), [INFO] [stderr] 664 | | opt_multispace [INFO] [stderr] 665 | | ) [INFO] [stderr] 666 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:672:1 [INFO] [stderr] | [INFO] [stderr] 672 | /// Parse binary comparison operators [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 673 | / named!(pub binary_comparison_operator<&[u8], Operator>, [INFO] [stderr] 674 | | alt_complete!( [INFO] [stderr] 675 | | map!(tag_no_case!("not_like"), |_| Operator::NotLike) [INFO] [stderr] 676 | | | map!(tag_no_case!("like"), |_| Operator::Like) [INFO] [stderr] ... | [INFO] [stderr] 685 | | ) [INFO] [stderr] 686 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:688:1 [INFO] [stderr] | [INFO] [stderr] 688 | /// Parse rule for AS-based aliases for SQL entities. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 689 | / named!(pub as_alias<&[u8], &str>, [INFO] [stderr] 690 | | complete!( [INFO] [stderr] 691 | | do_parse!( [INFO] [stderr] 692 | | multispace >> [INFO] [stderr] ... | [INFO] [stderr] 697 | | ) [INFO] [stderr] 698 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:738:1 [INFO] [stderr] | [INFO] [stderr] 738 | /// Parse rule for a comma-separated list of fields without aliases. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 739 | / named!(pub field_list<&[u8], Vec >, [INFO] [stderr] 740 | | many0!( [INFO] [stderr] 741 | | do_parse!( [INFO] [stderr] 742 | | fieldname: column_identifier_no_alias >> [INFO] [stderr] ... | [INFO] [stderr] 753 | | ) [INFO] [stderr] 754 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:756:1 [INFO] [stderr] | [INFO] [stderr] 756 | /// Parse list of column/field definitions. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 757 | / named!(pub field_definition_expr<&[u8], Vec>, [INFO] [stderr] 758 | | many0!( [INFO] [stderr] 759 | | do_parse!( [INFO] [stderr] 760 | | field: alt_complete!( [INFO] [stderr] ... | [INFO] [stderr] 795 | | ) [INFO] [stderr] 796 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:798:1 [INFO] [stderr] | [INFO] [stderr] 798 | / /// Parse list of table names. [INFO] [stderr] 799 | | /// XXX(malte): add support for aliases [INFO] [stderr] | |_______________________________________^ [INFO] [stderr] 800 | / named!(pub table_list<&[u8], Vec >, [INFO] [stderr] 801 | | many0!( [INFO] [stderr] 802 | | do_parse!( [INFO] [stderr] 803 | | table: table_reference >> [INFO] [stderr] ... | [INFO] [stderr] 814 | | ) [INFO] [stderr] 815 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:817:1 [INFO] [stderr] | [INFO] [stderr] 817 | /// Integer literal value [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 818 | / named!(pub integer_literal<&[u8], Literal>, [INFO] [stderr] 819 | | do_parse!( [INFO] [stderr] 820 | | sign: opt!(tag!("-")) >> [INFO] [stderr] 821 | | val: digit >> [INFO] [stderr] ... | [INFO] [stderr] 829 | | ) [INFO] [stderr] 830 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:832:1 [INFO] [stderr] | [INFO] [stderr] 832 | /// Floating point literal value [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 833 | / named!(pub float_literal<&[u8], Literal>, [INFO] [stderr] 834 | | do_parse!( [INFO] [stderr] 835 | | sign: opt!(tag!("-")) >> [INFO] [stderr] 836 | | mant: digit >> [INFO] [stderr] ... | [INFO] [stderr] 852 | | ) [INFO] [stderr] 853 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:855:1 [INFO] [stderr] | [INFO] [stderr] 855 | /// String literal value [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 856 | [INFO] [stderr] 857 | / named!(raw_string_singlequoted< Vec >, delimited!( [INFO] [stderr] 858 | | tag!("'"), [INFO] [stderr] 859 | | fold_many0!( [INFO] [stderr] 860 | | alt!( [INFO] [stderr] ... | [INFO] [stderr] 871 | | tag!("'") [INFO] [stderr] 872 | | )); [INFO] [stderr] | |___- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:897:1 [INFO] [stderr] | [INFO] [stderr] 897 | /// Any literal value. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 898 | / named!(pub literal<&[u8], Literal>, [INFO] [stderr] 899 | | alt_complete!( [INFO] [stderr] 900 | | float_literal [INFO] [stderr] 901 | | | integer_literal [INFO] [stderr] ... | [INFO] [stderr] 908 | | ) [INFO] [stderr] 909 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:922:1 [INFO] [stderr] | [INFO] [stderr] 922 | /// Parse a list of values (e.g., for INSERT syntax). [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 923 | / named!(pub value_list<&[u8], Vec >, [INFO] [stderr] 924 | | many0!( [INFO] [stderr] 925 | | do_parse!( [INFO] [stderr] 926 | | val: literal >> [INFO] [stderr] ... | [INFO] [stderr] 937 | | ) [INFO] [stderr] 938 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:940:1 [INFO] [stderr] | [INFO] [stderr] 940 | / /// Parse a reference to a named table, with an optional alias [INFO] [stderr] 941 | | /// TODO(malte): add support for schema.table notation [INFO] [stderr] | |______________________________________________________^ [INFO] [stderr] 942 | / named!(pub table_reference<&[u8], Table>, [INFO] [stderr] 943 | | do_parse!( [INFO] [stderr] 944 | | table: map_res!(sql_identifier, str::from_utf8) >> [INFO] [stderr] 945 | | alias: opt!(as_alias) >> [INFO] [stderr] ... | [INFO] [stderr] 953 | | ) [INFO] [stderr] 954 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:956:1 [INFO] [stderr] | [INFO] [stderr] 956 | /// Parse rule for a comment part. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 957 | / named!(pub parse_comment<&[u8], String>, [INFO] [stderr] 958 | | do_parse!( [INFO] [stderr] 959 | | opt_multispace >> [INFO] [stderr] 960 | | tag_no_case!("comment") >> [INFO] [stderr] ... | [INFO] [stderr] 964 | | ) [INFO] [stderr] 965 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/compound_select.rs:53:1 [INFO] [stderr] | [INFO] [stderr] 53 | /// Parse compound operator [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 54 | / named!(compound_op<&[u8], CompoundSelectOperator>, [INFO] [stderr] 55 | | alt_complete!( [INFO] [stderr] 56 | | do_parse!( [INFO] [stderr] 57 | | tag_no_case!("union") >> [INFO] [stderr] ... | [INFO] [stderr] 77 | | ) [INFO] [stderr] 78 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/compound_select.rs:80:1 [INFO] [stderr] | [INFO] [stderr] 80 | /// Parse compound selection [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 81 | / named!(pub compound_selection<&[u8], CompoundSelectStatement>, [INFO] [stderr] 82 | | complete!(do_parse!( [INFO] [stderr] 83 | | first_select: delimited!(opt!(tag!("(")), nested_selection, opt!(tag!(")"))) >> [INFO] [stderr] 84 | | other_selects: many1!( [INFO] [stderr] ... | [INFO] [stderr] 112 | | )) [INFO] [stderr] 113 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/condition.rs:103:1 [INFO] [stderr] | [INFO] [stderr] 103 | /// Parse a conditional expression into a condition tree structure [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 104 | / named!(pub condition_expr<&[u8], ConditionExpression>, [INFO] [stderr] 105 | | alt_complete!( [INFO] [stderr] 106 | | do_parse!( [INFO] [stderr] 107 | | left: and_expr >> [INFO] [stderr] ... | [INFO] [stderr] 120 | | | and_expr) [INFO] [stderr] 121 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:95:1 [INFO] [stderr] | [INFO] [stderr] 95 | /// MySQL grammar element for index column definition (§13.1.18, index_col_name) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 96 | / named!(pub index_col_name<&[u8], (Column, Option, Option)>, [INFO] [stderr] 97 | | do_parse!( [INFO] [stderr] 98 | | column: column_identifier_no_alias >> [INFO] [stderr] 99 | | opt_multispace >> [INFO] [stderr] ... | [INFO] [stderr] 103 | | ) [INFO] [stderr] 104 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:106:1 [INFO] [stderr] | [INFO] [stderr] 106 | /// Helper for list of index columns [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 107 | / named!(pub index_col_list<&[u8], Vec >, [INFO] [stderr] 108 | | many0!( [INFO] [stderr] 109 | | do_parse!( [INFO] [stderr] 110 | | entry: index_col_name >> [INFO] [stderr] ... | [INFO] [stderr] 122 | | ) [INFO] [stderr] 123 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:125:1 [INFO] [stderr] | [INFO] [stderr] 125 | /// Parse rule for an individual key specification. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 126 | / named!(pub key_specification<&[u8], TableKey>, [INFO] [stderr] 127 | | alt_complete!( [INFO] [stderr] 128 | | do_parse!( [INFO] [stderr] 129 | | tag_no_case!("fulltext") >> [INFO] [stderr] ... | [INFO] [stderr] 188 | | ) [INFO] [stderr] 189 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:191:1 [INFO] [stderr] | [INFO] [stderr] 191 | /// Parse rule for a comma-separated list. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 192 | / named!(pub key_specification_list<&[u8], Vec>, [INFO] [stderr] 193 | | many1!( [INFO] [stderr] 194 | | complete!(do_parse!( [INFO] [stderr] 195 | | key: key_specification >> [INFO] [stderr] ... | [INFO] [stderr] 206 | | ) [INFO] [stderr] 207 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:209:1 [INFO] [stderr] | [INFO] [stderr] 209 | /// Parse rule for a comma-separated list. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 210 | / named!(pub field_specification_list<&[u8], Vec >, [INFO] [stderr] 211 | | many1!( [INFO] [stderr] 212 | | complete!(do_parse!( [INFO] [stderr] 213 | | identifier: column_identifier_no_alias >> [INFO] [stderr] ... | [INFO] [stderr] 243 | | ) [INFO] [stderr] 244 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:246:1 [INFO] [stderr] | [INFO] [stderr] 246 | /// Parse rule for a column definition contraint. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 247 | / named!(pub column_constraint<&[u8], Option>, [INFO] [stderr] 248 | | alt_complete!( [INFO] [stderr] 249 | | do_parse!( [INFO] [stderr] 250 | | opt_multispace >> [INFO] [stderr] ... | [INFO] [stderr] 319 | | ) [INFO] [stderr] 320 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:322:1 [INFO] [stderr] | [INFO] [stderr] 322 | / /// Parse rule for a SQL CREATE TABLE query. [INFO] [stderr] 323 | | /// TODO(malte): support types, TEMPORARY tables, IF NOT EXISTS, AS stmt [INFO] [stderr] | |________________________________________________________________________^ [INFO] [stderr] 324 | / named!(pub creation<&[u8], CreateTableStatement>, [INFO] [stderr] 325 | | complete!(do_parse!( [INFO] [stderr] 326 | | tag_no_case!("create") >> [INFO] [stderr] 327 | | multispace >> [INFO] [stderr] ... | [INFO] [stderr] 522 | | )) [INFO] [stderr] 523 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:525:1 [INFO] [stderr] | [INFO] [stderr] 525 | /// Parse rule for a SQL CREATE VIEW query. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 526 | / named!(pub view_creation<&[u8], CreateViewStatement>, [INFO] [stderr] 527 | | complete!(do_parse!( [INFO] [stderr] 528 | | tag_no_case!("create") >> [INFO] [stderr] 529 | | multispace >> [INFO] [stderr] ... | [INFO] [stderr] 548 | | )) [INFO] [stderr] 549 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/insert.rs:54:1 [INFO] [stderr] | [INFO] [stderr] 54 | / /// Parse rule for a SQL insert query. [INFO] [stderr] 55 | | /// TODO(malte): support REPLACE, nested selection, DEFAULT VALUES [INFO] [stderr] | |__________________________________________________________________^ [INFO] [stderr] 56 | / named!(pub insertion<&[u8], InsertStatement>, [INFO] [stderr] 57 | | complete!(do_parse!( [INFO] [stderr] 58 | | tag_no_case!("insert") >> [INFO] [stderr] 59 | | ignore: opt!(preceded!(multispace, tag_no_case!("ignore"))) >> [INFO] [stderr] ... | [INFO] [stderr] 112 | | )) [INFO] [stderr] 113 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/join.rs:86:1 [INFO] [stderr] | [INFO] [stderr] 86 | /// Parse binary comparison operators [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 87 | / named!(pub join_operator<&[u8], JoinOperator>, [INFO] [stderr] 88 | | alt_complete!( [INFO] [stderr] 89 | | map!(tag_no_case!("join"), |_| JoinOperator::Join) [INFO] [stderr] 90 | | | map!(tag_no_case!("left join"), |_| JoinOperator::LeftJoin) [INFO] [stderr] ... | [INFO] [stderr] 95 | | ) [INFO] [stderr] 96 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/order.rs:51:1 [INFO] [stderr] | [INFO] [stderr] 51 | /// Parse ORDER BY clause [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 52 | / named!(pub order_clause<&[u8], OrderClause>, [INFO] [stderr] 53 | | complete!(do_parse!( [INFO] [stderr] 54 | | opt_multispace >> [INFO] [stderr] 55 | | tag_no_case!("order by") >> [INFO] [stderr] ... | [INFO] [stderr] 85 | | )) [INFO] [stderr] 86 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:133:1 [INFO] [stderr] | [INFO] [stderr] 133 | /// Parse GROUP BY clause [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 134 | / named!(group_by_clause<&[u8], GroupByClause>, [INFO] [stderr] 135 | | complete!(do_parse!( [INFO] [stderr] 136 | | opt_multispace >> [INFO] [stderr] 137 | | tag_no_case!("group by") >> [INFO] [stderr] ... | [INFO] [stderr] 153 | | )) [INFO] [stderr] 154 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:156:1 [INFO] [stderr] | [INFO] [stderr] 156 | /// Parse LIMIT clause [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 157 | / named!(pub limit_clause<&[u8], LimitClause>, [INFO] [stderr] 158 | | complete!(do_parse!( [INFO] [stderr] 159 | | opt_multispace >> [INFO] [stderr] 160 | | tag_no_case!("limit") >> [INFO] [stderr] ... | [INFO] [stderr] 178 | | }))) [INFO] [stderr] 179 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:181:1 [INFO] [stderr] | [INFO] [stderr] 181 | /// Parse JOIN clause [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 182 | / named!(join_clause<&[u8], JoinClause>, [INFO] [stderr] 183 | | complete!(do_parse!( [INFO] [stderr] 184 | | opt_multispace >> [INFO] [stderr] 185 | | _natural: opt!(tag_no_case!("natural")) >> [INFO] [stderr] ... | [INFO] [stderr] 219 | | }))) [INFO] [stderr] 220 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:222:1 [INFO] [stderr] | [INFO] [stderr] 222 | /// Different options for the right hand side of the join operator in a `join_clause` [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 223 | / named!(join_rhs<&[u8], JoinRightSide>, [INFO] [stderr] 224 | | alt_complete!( [INFO] [stderr] 225 | | complete!(do_parse!( [INFO] [stderr] 226 | | select: delimited!(tag!("("), nested_selection, tag!(")")) >> [INFO] [stderr] ... | [INFO] [stderr] 242 | | ) [INFO] [stderr] 243 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:245:1 [INFO] [stderr] | [INFO] [stderr] 245 | /// Parse WHERE clause of a selection [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 246 | / named!(pub where_clause<&[u8], ConditionExpression>, [INFO] [stderr] 247 | | complete!(do_parse!( [INFO] [stderr] 248 | | opt_multispace >> [INFO] [stderr] 249 | | tag_no_case!("where") >> [INFO] [stderr] ... | [INFO] [stderr] 253 | | )) [INFO] [stderr] 254 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:256:1 [INFO] [stderr] | [INFO] [stderr] 256 | /// Parse rule for a SQL selection query. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 257 | / named!(pub selection<&[u8], SelectStatement>, [INFO] [stderr] 258 | | do_parse!( [INFO] [stderr] 259 | | select: nested_selection >> [INFO] [stderr] 260 | | statement_terminator >> [INFO] [stderr] 261 | | (select) [INFO] [stderr] 262 | | ) [INFO] [stderr] 263 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/keywords.rs:151:1 [INFO] [stderr] | [INFO] [stderr] 151 | /// Matches any SQL reserved keyword [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 152 | / named!(pub sql_keyword<&[u8], &[u8]>, [INFO] [stderr] 153 | | complete!(do_parse!( [INFO] [stderr] 154 | | kw: alt_complete!( [INFO] [stderr] 155 | | keyword_a_to_c [INFO] [stderr] ... | [INFO] [stderr] 160 | | )) [INFO] [stderr] 161 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_doc_comments)] on by default [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/arithmetic.rs:99:1 [INFO] [stderr] | [INFO] [stderr] 99 | / /// Parse standard math operators. [INFO] [stderr] 100 | | /// TODO(malte): this doesn't currently observe operator precedence. [INFO] [stderr] | |____________________________________________________________________^ [INFO] [stderr] 101 | / named!(pub arithmetic_operator<&[u8], ArithmeticOperator>, [INFO] [stderr] 102 | | alt_complete!( [INFO] [stderr] 103 | | map!(tag!("+"), |_| ArithmeticOperator::Add) [INFO] [stderr] 104 | | | map!(tag!("-"), |_| ArithmeticOperator::Subtract) [INFO] [stderr] ... | [INFO] [stderr] 107 | | ) [INFO] [stderr] 108 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/arithmetic.rs:110:1 [INFO] [stderr] | [INFO] [stderr] 110 | /// Base case for nested arithmetic expressions: column name or literal. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 111 | / named!(pub arithmetic_base<&[u8], ArithmeticBase>, [INFO] [stderr] 112 | | alt_complete!( [INFO] [stderr] 113 | | map!(integer_literal, |il| ArithmeticBase::Scalar(il)) [INFO] [stderr] 114 | | | map!(column_identifier_no_alias, |ci| ArithmeticBase::Column(ci)) [INFO] [stderr] 115 | | ) [INFO] [stderr] 116 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/arithmetic.rs:118:1 [INFO] [stderr] | [INFO] [stderr] 118 | / /// Parse simple arithmetic expressions combining literals, and columns and literals. [INFO] [stderr] 119 | | /// TODO(malte): this doesn't currently support nested expressions. [INFO] [stderr] | |___________________________________________________________________^ [INFO] [stderr] 120 | / named!(pub arithmetic_expression<&[u8], ArithmeticExpression>, [INFO] [stderr] 121 | | complete!(do_parse!( [INFO] [stderr] 122 | | left: arithmetic_cast >> [INFO] [stderr] 123 | | opt_multispace >> [INFO] [stderr] ... | [INFO] [stderr] 138 | | )) [INFO] [stderr] 139 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:333:1 [INFO] [stderr] | [INFO] [stderr] 333 | /// A SQL type specifier. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 334 | / named!(pub type_identifier<&[u8], SqlType>, [INFO] [stderr] 335 | | alt_complete!( [INFO] [stderr] 336 | | do_parse!( [INFO] [stderr] 337 | | tag_no_case!("bool") >> [INFO] [stderr] ... | [INFO] [stderr] 480 | | ) [INFO] [stderr] 481 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:483:1 [INFO] [stderr] | [INFO] [stderr] 483 | / /// Parses the arguments for an agregation function, and also returns whether the distinct flag is [INFO] [stderr] 484 | | /// present. [INFO] [stderr] | |____________^ [INFO] [stderr] 485 | / named!(pub function_arguments<&[u8], (Column, bool)>, [INFO] [stderr] 486 | | do_parse!( [INFO] [stderr] 487 | | distinct: opt!(do_parse!( [INFO] [stderr] 488 | | tag_no_case!("distinct") >> [INFO] [stderr] ... | [INFO] [stderr] 494 | | ) [INFO] [stderr] 495 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:559:1 [INFO] [stderr] | [INFO] [stderr] 559 | /// Parses a SQL column identifier in the table.column format [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 560 | / named!(pub column_identifier_no_alias<&[u8], Column>, [INFO] [stderr] 561 | | alt_complete!( [INFO] [stderr] 562 | | do_parse!( [INFO] [stderr] 563 | | function: column_function >> [INFO] [stderr] ... | [INFO] [stderr] 590 | | ) [INFO] [stderr] 591 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:593:1 [INFO] [stderr] | [INFO] [stderr] 593 | /// Parses a SQL column identifier in the table.column format [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 594 | / named!(pub column_identifier<&[u8], Column>, [INFO] [stderr] 595 | | alt_complete!( [INFO] [stderr] 596 | | do_parse!( [INFO] [stderr] 597 | | function: column_function >> [INFO] [stderr] ... | [INFO] [stderr] 635 | | ) [INFO] [stderr] 636 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:638:1 [INFO] [stderr] | [INFO] [stderr] 638 | /// Parses a SQL identifier (alphanumeric and "_"). [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 639 | / named!(pub sql_identifier<&[u8], &[u8]>, [INFO] [stderr] 640 | | alt_complete!( [INFO] [stderr] 641 | | do_parse!( [INFO] [stderr] 642 | | not!(peek!(sql_keyword)) >> [INFO] [stderr] ... | [INFO] [stderr] 648 | | ) [INFO] [stderr] 649 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:651:1 [INFO] [stderr] | [INFO] [stderr] 651 | /// Parse an unsigned integer. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 652 | / named!(pub unsigned_number<&[u8], u64>, [INFO] [stderr] 653 | | map_res!( [INFO] [stderr] 654 | | map_res!(digit, str::from_utf8), [INFO] [stderr] 655 | | FromStr::from_str [INFO] [stderr] 656 | | ) [INFO] [stderr] 657 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:659:1 [INFO] [stderr] | [INFO] [stderr] 659 | /// Parse a terminator that ends a SQL statement. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 660 | / named!(pub statement_terminator, [INFO] [stderr] 661 | | delimited!( [INFO] [stderr] 662 | | opt_multispace, [INFO] [stderr] 663 | | alt_complete!(tag!(";") | line_ending | eof!()), [INFO] [stderr] 664 | | opt_multispace [INFO] [stderr] 665 | | ) [INFO] [stderr] 666 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:672:1 [INFO] [stderr] | [INFO] [stderr] 672 | /// Parse binary comparison operators [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 673 | / named!(pub binary_comparison_operator<&[u8], Operator>, [INFO] [stderr] 674 | | alt_complete!( [INFO] [stderr] 675 | | map!(tag_no_case!("not_like"), |_| Operator::NotLike) [INFO] [stderr] 676 | | | map!(tag_no_case!("like"), |_| Operator::Like) [INFO] [stderr] ... | [INFO] [stderr] 685 | | ) [INFO] [stderr] 686 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:688:1 [INFO] [stderr] | [INFO] [stderr] 688 | /// Parse rule for AS-based aliases for SQL entities. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 689 | / named!(pub as_alias<&[u8], &str>, [INFO] [stderr] 690 | | complete!( [INFO] [stderr] 691 | | do_parse!( [INFO] [stderr] 692 | | multispace >> [INFO] [stderr] ... | [INFO] [stderr] 697 | | ) [INFO] [stderr] 698 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:738:1 [INFO] [stderr] | [INFO] [stderr] 738 | /// Parse rule for a comma-separated list of fields without aliases. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 739 | / named!(pub field_list<&[u8], Vec >, [INFO] [stderr] 740 | | many0!( [INFO] [stderr] 741 | | do_parse!( [INFO] [stderr] 742 | | fieldname: column_identifier_no_alias >> [INFO] [stderr] ... | [INFO] [stderr] 753 | | ) [INFO] [stderr] 754 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:756:1 [INFO] [stderr] | [INFO] [stderr] 756 | /// Parse list of column/field definitions. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 757 | / named!(pub field_definition_expr<&[u8], Vec>, [INFO] [stderr] 758 | | many0!( [INFO] [stderr] 759 | | do_parse!( [INFO] [stderr] 760 | | field: alt_complete!( [INFO] [stderr] ... | [INFO] [stderr] 795 | | ) [INFO] [stderr] 796 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:798:1 [INFO] [stderr] | [INFO] [stderr] 798 | / /// Parse list of table names. [INFO] [stderr] 799 | | /// XXX(malte): add support for aliases [INFO] [stderr] | |_______________________________________^ [INFO] [stderr] 800 | / named!(pub table_list<&[u8], Vec
>, [INFO] [stderr] 801 | | many0!( [INFO] [stderr] 802 | | do_parse!( [INFO] [stderr] 803 | | table: table_reference >> [INFO] [stderr] ... | [INFO] [stderr] 814 | | ) [INFO] [stderr] 815 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:817:1 [INFO] [stderr] | [INFO] [stderr] 817 | /// Integer literal value [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 818 | / named!(pub integer_literal<&[u8], Literal>, [INFO] [stderr] 819 | | do_parse!( [INFO] [stderr] 820 | | sign: opt!(tag!("-")) >> [INFO] [stderr] 821 | | val: digit >> [INFO] [stderr] ... | [INFO] [stderr] 829 | | ) [INFO] [stderr] 830 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:832:1 [INFO] [stderr] | [INFO] [stderr] 832 | /// Floating point literal value [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 833 | / named!(pub float_literal<&[u8], Literal>, [INFO] [stderr] 834 | | do_parse!( [INFO] [stderr] 835 | | sign: opt!(tag!("-")) >> [INFO] [stderr] 836 | | mant: digit >> [INFO] [stderr] ... | [INFO] [stderr] 852 | | ) [INFO] [stderr] 853 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:855:1 [INFO] [stderr] | [INFO] [stderr] 855 | /// String literal value [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 856 | [INFO] [stderr] 857 | / named!(raw_string_singlequoted< Vec >, delimited!( [INFO] [stderr] 858 | | tag!("'"), [INFO] [stderr] 859 | | fold_many0!( [INFO] [stderr] 860 | | alt!( [INFO] [stderr] ... | [INFO] [stderr] 871 | | tag!("'") [INFO] [stderr] 872 | | )); [INFO] [stderr] | |___- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:897:1 [INFO] [stderr] | [INFO] [stderr] 897 | /// Any literal value. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 898 | / named!(pub literal<&[u8], Literal>, [INFO] [stderr] 899 | | alt_complete!( [INFO] [stderr] 900 | | float_literal [INFO] [stderr] 901 | | | integer_literal [INFO] [stderr] ... | [INFO] [stderr] 908 | | ) [INFO] [stderr] 909 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:922:1 [INFO] [stderr] | [INFO] [stderr] 922 | /// Parse a list of values (e.g., for INSERT syntax). [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 923 | / named!(pub value_list<&[u8], Vec >, [INFO] [stderr] 924 | | many0!( [INFO] [stderr] 925 | | do_parse!( [INFO] [stderr] 926 | | val: literal >> [INFO] [stderr] ... | [INFO] [stderr] 937 | | ) [INFO] [stderr] 938 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:940:1 [INFO] [stderr] | [INFO] [stderr] 940 | / /// Parse a reference to a named table, with an optional alias [INFO] [stderr] 941 | | /// TODO(malte): add support for schema.table notation [INFO] [stderr] | |______________________________________________________^ [INFO] [stderr] 942 | / named!(pub table_reference<&[u8], Table>, [INFO] [stderr] 943 | | do_parse!( [INFO] [stderr] 944 | | table: map_res!(sql_identifier, str::from_utf8) >> [INFO] [stderr] 945 | | alias: opt!(as_alias) >> [INFO] [stderr] ... | [INFO] [stderr] 953 | | ) [INFO] [stderr] 954 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/common.rs:956:1 [INFO] [stderr] | [INFO] [stderr] 956 | /// Parse rule for a comment part. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 957 | / named!(pub parse_comment<&[u8], String>, [INFO] [stderr] 958 | | do_parse!( [INFO] [stderr] 959 | | opt_multispace >> [INFO] [stderr] 960 | | tag_no_case!("comment") >> [INFO] [stderr] ... | [INFO] [stderr] 964 | | ) [INFO] [stderr] 965 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/compound_select.rs:53:1 [INFO] [stderr] | [INFO] [stderr] 53 | /// Parse compound operator [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 54 | / named!(compound_op<&[u8], CompoundSelectOperator>, [INFO] [stderr] 55 | | alt_complete!( [INFO] [stderr] 56 | | do_parse!( [INFO] [stderr] 57 | | tag_no_case!("union") >> [INFO] [stderr] ... | [INFO] [stderr] 77 | | ) [INFO] [stderr] 78 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/compound_select.rs:80:1 [INFO] [stderr] | [INFO] [stderr] 80 | /// Parse compound selection [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 81 | / named!(pub compound_selection<&[u8], CompoundSelectStatement>, [INFO] [stderr] 82 | | complete!(do_parse!( [INFO] [stderr] 83 | | first_select: delimited!(opt!(tag!("(")), nested_selection, opt!(tag!(")"))) >> [INFO] [stderr] 84 | | other_selects: many1!( [INFO] [stderr] ... | [INFO] [stderr] 112 | | )) [INFO] [stderr] 113 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/condition.rs:103:1 [INFO] [stderr] | [INFO] [stderr] 103 | /// Parse a conditional expression into a condition tree structure [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 104 | / named!(pub condition_expr<&[u8], ConditionExpression>, [INFO] [stderr] 105 | | alt_complete!( [INFO] [stderr] 106 | | do_parse!( [INFO] [stderr] 107 | | left: and_expr >> [INFO] [stderr] ... | [INFO] [stderr] 120 | | | and_expr) [INFO] [stderr] 121 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:95:1 [INFO] [stderr] | [INFO] [stderr] 95 | /// MySQL grammar element for index column definition (§13.1.18, index_col_name) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 96 | / named!(pub index_col_name<&[u8], (Column, Option, Option)>, [INFO] [stderr] 97 | | do_parse!( [INFO] [stderr] 98 | | column: column_identifier_no_alias >> [INFO] [stderr] 99 | | opt_multispace >> [INFO] [stderr] ... | [INFO] [stderr] 103 | | ) [INFO] [stderr] 104 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:106:1 [INFO] [stderr] | [INFO] [stderr] 106 | /// Helper for list of index columns [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 107 | / named!(pub index_col_list<&[u8], Vec >, [INFO] [stderr] 108 | | many0!( [INFO] [stderr] 109 | | do_parse!( [INFO] [stderr] 110 | | entry: index_col_name >> [INFO] [stderr] ... | [INFO] [stderr] 122 | | ) [INFO] [stderr] 123 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:125:1 [INFO] [stderr] | [INFO] [stderr] 125 | /// Parse rule for an individual key specification. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 126 | / named!(pub key_specification<&[u8], TableKey>, [INFO] [stderr] 127 | | alt_complete!( [INFO] [stderr] 128 | | do_parse!( [INFO] [stderr] 129 | | tag_no_case!("fulltext") >> [INFO] [stderr] ... | [INFO] [stderr] 188 | | ) [INFO] [stderr] 189 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:191:1 [INFO] [stderr] | [INFO] [stderr] 191 | /// Parse rule for a comma-separated list. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 192 | / named!(pub key_specification_list<&[u8], Vec>, [INFO] [stderr] 193 | | many1!( [INFO] [stderr] 194 | | complete!(do_parse!( [INFO] [stderr] 195 | | key: key_specification >> [INFO] [stderr] ... | [INFO] [stderr] 206 | | ) [INFO] [stderr] 207 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:209:1 [INFO] [stderr] | [INFO] [stderr] 209 | /// Parse rule for a comma-separated list. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 210 | / named!(pub field_specification_list<&[u8], Vec >, [INFO] [stderr] 211 | | many1!( [INFO] [stderr] 212 | | complete!(do_parse!( [INFO] [stderr] 213 | | identifier: column_identifier_no_alias >> [INFO] [stderr] ... | [INFO] [stderr] 243 | | ) [INFO] [stderr] 244 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:246:1 [INFO] [stderr] | [INFO] [stderr] 246 | /// Parse rule for a column definition contraint. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 247 | / named!(pub column_constraint<&[u8], Option>, [INFO] [stderr] 248 | | alt_complete!( [INFO] [stderr] 249 | | do_parse!( [INFO] [stderr] 250 | | opt_multispace >> [INFO] [stderr] ... | [INFO] [stderr] 319 | | ) [INFO] [stderr] 320 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:322:1 [INFO] [stderr] | [INFO] [stderr] 322 | / /// Parse rule for a SQL CREATE TABLE query. [INFO] [stderr] 323 | | /// TODO(malte): support types, TEMPORARY tables, IF NOT EXISTS, AS stmt [INFO] [stderr] | |________________________________________________________________________^ [INFO] [stderr] 324 | / named!(pub creation<&[u8], CreateTableStatement>, [INFO] [stderr] 325 | | complete!(do_parse!( [INFO] [stderr] 326 | | tag_no_case!("create") >> [INFO] [stderr] 327 | | multispace >> [INFO] [stderr] ... | [INFO] [stderr] 522 | | )) [INFO] [stderr] 523 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/create.rs:525:1 [INFO] [stderr] | [INFO] [stderr] 525 | /// Parse rule for a SQL CREATE VIEW query. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 526 | / named!(pub view_creation<&[u8], CreateViewStatement>, [INFO] [stderr] 527 | | complete!(do_parse!( [INFO] [stderr] 528 | | tag_no_case!("create") >> [INFO] [stderr] 529 | | multispace >> [INFO] [stderr] ... | [INFO] [stderr] 548 | | )) [INFO] [stderr] 549 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/insert.rs:54:1 [INFO] [stderr] | [INFO] [stderr] 54 | / /// Parse rule for a SQL insert query. [INFO] [stderr] 55 | | /// TODO(malte): support REPLACE, nested selection, DEFAULT VALUES [INFO] [stderr] | |__________________________________________________________________^ [INFO] [stderr] 56 | / named!(pub insertion<&[u8], InsertStatement>, [INFO] [stderr] 57 | | complete!(do_parse!( [INFO] [stderr] 58 | | tag_no_case!("insert") >> [INFO] [stderr] 59 | | ignore: opt!(preceded!(multispace, tag_no_case!("ignore"))) >> [INFO] [stderr] ... | [INFO] [stderr] 112 | | )) [INFO] [stderr] 113 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/join.rs:86:1 [INFO] [stderr] | [INFO] [stderr] 86 | /// Parse binary comparison operators [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 87 | / named!(pub join_operator<&[u8], JoinOperator>, [INFO] [stderr] 88 | | alt_complete!( [INFO] [stderr] 89 | | map!(tag_no_case!("join"), |_| JoinOperator::Join) [INFO] [stderr] 90 | | | map!(tag_no_case!("left join"), |_| JoinOperator::LeftJoin) [INFO] [stderr] ... | [INFO] [stderr] 95 | | ) [INFO] [stderr] 96 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/order.rs:51:1 [INFO] [stderr] | [INFO] [stderr] 51 | /// Parse ORDER BY clause [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 52 | / named!(pub order_clause<&[u8], OrderClause>, [INFO] [stderr] 53 | | complete!(do_parse!( [INFO] [stderr] 54 | | opt_multispace >> [INFO] [stderr] 55 | | tag_no_case!("order by") >> [INFO] [stderr] ... | [INFO] [stderr] 85 | | )) [INFO] [stderr] 86 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:133:1 [INFO] [stderr] | [INFO] [stderr] 133 | /// Parse GROUP BY clause [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 134 | / named!(group_by_clause<&[u8], GroupByClause>, [INFO] [stderr] 135 | | complete!(do_parse!( [INFO] [stderr] 136 | | opt_multispace >> [INFO] [stderr] 137 | | tag_no_case!("group by") >> [INFO] [stderr] ... | [INFO] [stderr] 153 | | )) [INFO] [stderr] 154 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:156:1 [INFO] [stderr] | [INFO] [stderr] 156 | /// Parse LIMIT clause [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 157 | / named!(pub limit_clause<&[u8], LimitClause>, [INFO] [stderr] 158 | | complete!(do_parse!( [INFO] [stderr] 159 | | opt_multispace >> [INFO] [stderr] 160 | | tag_no_case!("limit") >> [INFO] [stderr] ... | [INFO] [stderr] 178 | | }))) [INFO] [stderr] 179 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:181:1 [INFO] [stderr] | [INFO] [stderr] 181 | /// Parse JOIN clause [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 182 | / named!(join_clause<&[u8], JoinClause>, [INFO] [stderr] 183 | | complete!(do_parse!( [INFO] [stderr] 184 | | opt_multispace >> [INFO] [stderr] 185 | | _natural: opt!(tag_no_case!("natural")) >> [INFO] [stderr] ... | [INFO] [stderr] 219 | | }))) [INFO] [stderr] 220 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:222:1 [INFO] [stderr] | [INFO] [stderr] 222 | /// Different options for the right hand side of the join operator in a `join_clause` [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 223 | / named!(join_rhs<&[u8], JoinRightSide>, [INFO] [stderr] 224 | | alt_complete!( [INFO] [stderr] 225 | | complete!(do_parse!( [INFO] [stderr] 226 | | select: delimited!(tag!("("), nested_selection, tag!(")")) >> [INFO] [stderr] ... | [INFO] [stderr] 242 | | ) [INFO] [stderr] 243 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:245:1 [INFO] [stderr] | [INFO] [stderr] 245 | /// Parse WHERE clause of a selection [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 246 | / named!(pub where_clause<&[u8], ConditionExpression>, [INFO] [stderr] 247 | | complete!(do_parse!( [INFO] [stderr] 248 | | opt_multispace >> [INFO] [stderr] 249 | | tag_no_case!("where") >> [INFO] [stderr] ... | [INFO] [stderr] 253 | | )) [INFO] [stderr] 254 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/select.rs:256:1 [INFO] [stderr] | [INFO] [stderr] 256 | /// Parse rule for a SQL selection query. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 257 | / named!(pub selection<&[u8], SelectStatement>, [INFO] [stderr] 258 | | do_parse!( [INFO] [stderr] 259 | | select: nested_selection >> [INFO] [stderr] 260 | | statement_terminator >> [INFO] [stderr] 261 | | (select) [INFO] [stderr] 262 | | ) [INFO] [stderr] 263 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 21.09s [INFO] running `"docker" "inspect" "5ca7a0047ef51870a3c3419f0616e12385a70ced1c3a06a93ada6d085f221e03"` [INFO] running `"docker" "rm" "-f" "5ca7a0047ef51870a3c3419f0616e12385a70ced1c3a06a93ada6d085f221e03"` [INFO] [stdout] 5ca7a0047ef51870a3c3419f0616e12385a70ced1c3a06a93ada6d085f221e03