pub type Subgraphs<'a, S> = Cow<'a, [S]>;
pub enum Subgraphs<'a, S> { Borrowed(&'a [S]), Owned(<[S] as ToOwned>::Owned), }
Borrowed data.
Owned data.