From e078077d4709c585742b63350a0a648f7185bb14 Mon Sep 17 00:00:00 2001 From: NotLeonian <75620009+NotLeonian@users.noreply.github.com> Date: Fri, 4 Apr 2025 21:22:16 +0900 Subject: [PATCH] Implement Clone and Debug for SccGraph --- src/scc.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scc.rs b/src/scc.rs index 69436a6..3576cab 100644 --- a/src/scc.rs +++ b/src/scc.rs @@ -31,6 +31,7 @@ use crate::internal_scc; /// /// assert_eq!(graph.scc(), [&[0, 1, 2][..], &[3], &[4]]); /// ``` +#[derive(Clone, Debug)] pub struct SccGraph { internal: internal_scc::SccGraph, }