You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement the Clone and Debug traits for SccGraph.
Note that this requires implementing Clone and Debug for internal_scc::SccGraph#147 .
The Clone trait can be derived.
For the Debug trait, discussion is needed regarding the output format.
I think that either of the following approaches would be appropriate:
Derive it.
Since deriving would result in redundant output like SccGraph { internal: SccGraph {, format it the same way as the fmt function in internal_scc::SccGraph.
The text was updated successfully, but these errors were encountered:
Do you have any opinions on which of the two output formats I proposed is preferable, or whether another format would be better?
I personally think the latter one I proposed is the better option.
Implement the
Clone
andDebug
traits forSccGraph
.Note that this requires implementing
Clone
andDebug
forinternal_scc::SccGraph
#147 .The
Clone
trait can be derived.For the
Debug
trait, discussion is needed regarding the output format.I think that either of the following approaches would be appropriate:
SccGraph { internal: SccGraph {
, format it the same way as thefmt
function ininternal_scc::SccGraph
.The text was updated successfully, but these errors were encountered: