├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── custom_debug_derive ├── .gitignore ├── Cargo.toml └── src │ ├── field_attributes.rs │ ├── lib.rs │ ├── result_into_stream_ext.rs │ ├── retain_ext.rs │ └── tests.rs ├── examples ├── buffers.rs ├── conditional_skip.rs └── hex.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/README.md -------------------------------------------------------------------------------- /custom_debug_derive/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /custom_debug_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/custom_debug_derive/Cargo.toml -------------------------------------------------------------------------------- /custom_debug_derive/src/field_attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/custom_debug_derive/src/field_attributes.rs -------------------------------------------------------------------------------- /custom_debug_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/custom_debug_derive/src/lib.rs -------------------------------------------------------------------------------- /custom_debug_derive/src/result_into_stream_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/custom_debug_derive/src/result_into_stream_ext.rs -------------------------------------------------------------------------------- /custom_debug_derive/src/retain_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/custom_debug_derive/src/retain_ext.rs -------------------------------------------------------------------------------- /custom_debug_derive/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/custom_debug_derive/src/tests.rs -------------------------------------------------------------------------------- /examples/buffers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/examples/buffers.rs -------------------------------------------------------------------------------- /examples/conditional_skip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/examples/conditional_skip.rs -------------------------------------------------------------------------------- /examples/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/examples/hex.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panicbit/custom_debug/HEAD/src/lib.rs --------------------------------------------------------------------------------