It's my understanding that implementing Debug on structures is generally a Good Thing. Types provided by this library do not implement Debug. Is this by policy, or by omission?
(I tried some quick messing around with the s! macro and failed to persuade it to #[derive(Debug)]. But I suppose that this ought to be possible, if it is indeed desirable).
It's my understanding that implementing
Debugon structures is generally a Good Thing. Types provided by this library do not implementDebug. Is this by policy, or by omission?(I tried some quick messing around with the
s!macro and failed to persuade it to#[derive(Debug)]. But I suppose that this ought to be possible, if it is indeed desirable).