Auto-deref workaround for deriving `ZeroizeOnDrop`.
| 839 | |
| 840 | /// Auto-deref workaround for deriving `ZeroizeOnDrop`. |
| 841 | pub trait AssertZeroize { |
| 842 | fn zeroize_or_on_drop(&mut self); |
| 843 | } |
| 844 | |
| 845 | impl<T: Zeroize + ?Sized> AssertZeroize for T { |
| 846 | fn zeroize_or_on_drop(&mut self) { |
nothing calls this directly
no outgoing calls
no test coverage detected