pub trait OwnedSequence<'a, Item: 'a, Subsequence: Sequence<'a, Item, Subsequence> + ?Sized>: Sequence<'a, Item, Subsequence> + Sized { }
Expand description

A type behaving like an owned sequence over the type Item. Currently this only means the sequence is Sized.

Implementations on Foreign Types

Implementors