debug-ignore icon indicating copy to clipboard operation
debug-ignore copied to clipboard

A newtype wrapper that causes Debug impls to skip a field.

Results 2 debug-ignore issues
Sort by recently updated
recently updated
newest added

Currently: ```rust #[derive(Debug)] pub struct PublicStruct { inner: DebugIgnore, } impl PublicStruct { pub fn new() -> Self { Self { inner: DebugIgnore(InnerStructWithLotsOfDebugInfo { field: "field", /* ... */ })...

I'm trying to use this to ignore a field I was previously ignoring with `derivative`, but this library doesn't seem to support it properly. My use case is ignoring the...