pub trait CloneableSequence<'a, Item: 'a + Clone, Subsequence: CloneableSequence<'a, Item, Subsequence> + ?Sized>: ToOwned { }
Expand description

A type behaving like an cloneable sequence over the type Item. Currently this only means the sequence is ToOwned.

Implementations on Foreign Types

Implementors