gitextract_3exoboco/ ├── .github/ │ └── workflows/ │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── Changelog.md ├── LICENSE-ZLIB.md ├── README.md ├── commit.sh ├── const_format/ │ ├── Cargo.toml │ ├── LICENSE-ZLIB.md │ ├── src/ │ │ ├── __ascii_case_conv/ │ │ │ └── word_iterator.rs │ │ ├── __ascii_case_conv.rs │ │ ├── __hidden_utils.rs │ │ ├── __str_methods/ │ │ │ ├── pattern.rs │ │ │ ├── str_indexing.rs │ │ │ ├── str_repeat.rs │ │ │ ├── str_replace.rs │ │ │ ├── str_splice.rs │ │ │ └── str_split.rs │ │ ├── __str_methods.rs │ │ ├── char_encoding/ │ │ │ └── tests.rs │ │ ├── char_encoding.rs │ │ ├── const_debug_derive.rs │ │ ├── const_generic_concatcp.rs │ │ ├── doctests.rs │ │ ├── equality.rs │ │ ├── fmt/ │ │ │ ├── error.rs │ │ │ ├── formatter.rs │ │ │ ├── std_type_impls/ │ │ │ │ └── ranges.rs │ │ │ ├── std_type_impls.rs │ │ │ ├── str_writer.rs │ │ │ └── str_writer_mut.rs │ │ ├── fmt.rs │ │ ├── for_assert_macros.rs │ │ ├── for_examples.rs │ │ ├── formatting.rs │ │ ├── lib.rs │ │ ├── macros/ │ │ │ ├── assertions/ │ │ │ │ ├── assertc_macros.rs │ │ │ │ └── assertcp_macros.rs │ │ │ ├── assertions.rs │ │ │ ├── call_debug_fmt.rs │ │ │ ├── constructors.rs │ │ │ ├── fmt_macros.rs │ │ │ ├── helper_macros.rs │ │ │ ├── impl_fmt.rs │ │ │ ├── map_ascii_case.rs │ │ │ └── str_methods.rs │ │ ├── macros.rs │ │ ├── marker_traits/ │ │ │ ├── format_marker.rs │ │ │ └── write_marker.rs │ │ ├── marker_traits.rs │ │ ├── msg.rs │ │ ├── pargument.rs │ │ ├── slice_cmp.rs │ │ ├── test_utils.rs │ │ ├── utils.rs │ │ ├── wrapper_types/ │ │ │ ├── ascii_str.rs │ │ │ ├── pwrapper/ │ │ │ │ └── tests.rs │ │ │ ├── pwrapper.rs │ │ │ └── sliced.rs │ │ └── wrapper_types.rs │ └── tests/ │ ├── fmt_tests/ │ │ ├── display_formatting.rs │ │ ├── formatted_writing.rs │ │ ├── formatter_methods/ │ │ │ └── debug_methods.rs │ │ ├── formatter_methods.rs │ │ ├── std_impl_tests.rs │ │ ├── str_writer_methods.rs │ │ └── str_writer_mut.rs │ ├── fmt_tests_modules.rs │ ├── misc_tests/ │ │ ├── assertc_tests.rs │ │ ├── assertcp_tests.rs │ │ ├── call_debug_fmt_macro.rs │ │ ├── clippy_warnings.rs │ │ ├── concatc_macro_tests.rs │ │ ├── derive_tests/ │ │ │ └── is_a_attributes.rs │ │ ├── derive_tests.rs │ │ ├── equality_tests.rs │ │ ├── formatc_macros.rs │ │ ├── impl_fmt_macro_tests.rs │ │ ├── inline_const_pattern_tests.rs │ │ ├── shared_cp_macro_tests.rs │ │ ├── type_kind_coercion_macro_tests.rs │ │ └── writec_macro.rs │ ├── misc_tests_modules.rs │ ├── str_methods.rs │ └── str_methods_modules/ │ ├── conv_ascii_case.rs │ ├── str_replace.rs │ ├── str_splice.rs │ └── str_split_tests.rs ├── const_format_proc_macros/ │ ├── Cargo.toml │ ├── LICENSE-ZLIB.md │ └── src/ │ ├── datastructure/ │ │ └── field_map.rs │ ├── datastructure.rs │ ├── derive_debug/ │ │ ├── attribute_parsing.rs │ │ ├── syntax.rs │ │ └── type_detection.rs │ ├── derive_debug.rs │ ├── error.rs │ ├── format_args/ │ │ └── parsing.rs │ ├── format_args.rs │ ├── format_macro/ │ │ └── tests.rs │ ├── format_macro.rs │ ├── format_str/ │ │ ├── errors.rs │ │ ├── parsing.rs │ │ └── tests.rs │ ├── format_str.rs │ ├── formatting.rs │ ├── lib.rs │ ├── macros.rs │ ├── parse_utils.rs │ ├── respan_to_macro.rs │ ├── shared_arg_parsing.rs │ ├── spanned.rs │ ├── test_utils.rs │ └── utils.rs ├── print_errors/ │ ├── Cargo.toml │ └── src/ │ ├── formatc_macros.rs │ ├── lib.rs │ ├── using_assertc_macros.rs │ └── using_writec_macro.rs └── print_warnings/ ├── Cargo.toml └── src/ └── main.rs