Type Alias Edges

Source
pub type Edges<'a, E> = Cow<'a, [E]>;

Aliased Type§

pub enum Edges<'a, E> {
    Borrowed(&'a [E]),
    Owned(<[E] as ToOwned>::Owned),
}

Variants§

§

Borrowed(&'a [E])

Borrowed data.

§

Owned(<[E] as ToOwned>::Owned)

Owned data.

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.