Currently, Dispatch and DispatchProps does not implement Debug, which makes any component that contains these structs as fields to be unable to #[derive(Debug)]. Making it more difficult to debug these components.
Would it be possible to implement Debug for Dispatch and DispatchProps when STORE also implements Debug?
Currently,
Dispatch
andDispatchProps
does not implement Debug, which makes any component that contains these structs as fields to be unable to#[derive(Debug)]
. Making it more difficult to debug these components.Would it be possible to implement
Debug
forDispatch
andDispatchProps
whenSTORE
also implementsDebug
?